Exécution d'Apache sur Ubuntu Precise, avec PHP 5.5
Essayer d'accéder à mon var/www/
me donne un 500.
/var/log/apache2/error.log
spectacles:
/var/www/web/.htaccess: <IfModule not allowed here
mon .htacess est:
DirectoryIndex app.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$
RewriteRule ^(.*) - [E=BASE:%1]
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^app\.php(/(.*)|$) %{ENV:BASE}/$2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule .? - [L]
RewriteRule .? %{ENV:BASE}/app.php [L]
</IfModule>
<IfModule !mod_rewrite.c>
<IfModule mod_alias.c>
RedirectMatch 302 ^/$ /app.php/
</IfModule>
</IfModule>
Dans mon apache.conf, j'ai ajouté:
<Directory />
AllowOverride ALL
</Directory>
Et cela a fonctionné après avoir redémarré Apache.