Please change this in your Apache configuration:
Code:
<Directory /srv/www/*/web>
Options +Includes FollowSymLinks -Indexes
AllowOverride None
AllowOverride Indexes AuthConfig Limit FileInfo
Order allow,deny
Allow from all
<Files ~ "^\.ht">
Deny from all
</Files>
</Directory>
to
Code:
<Directory /srv/www/*/web>
Options +Includes FollowSymLinks -Indexes
AllowOverride All
Order allow,deny
Allow from all
<Files ~ "^\.ht">
Deny from all
</Files>
</Directory>
and restart Apache.