Disable Apache's MultiViews option

It can mess up rewriting.

See http://discuss.flarum.org/d/613-installation-went-well-but-i-can-t-visit-the-admin-section
pull/21/head^2
Franz Liedke 2015-09-03 22:13:31 +02:00
parent 6b4ee29202
commit 7739217b39
1 changed files with 3 additions and 0 deletions

View File

@ -9,4 +9,7 @@
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
# MultiViews can mess up our rewriting scheme
Options -MultiViews
</IfModule>