Reputation: 795
I have a small problem: Apche on my Mac OS X 10.8.1 sees /index
and /index.php
as same file. That is when referring to the /index
it load index.php
like some RewriteRule
. DirectoryIndex index.html
as default.
P.S.
Also is other topic, but with no working solution for me.
Upvotes: 0
Views: 79
Reputation: 120654
This is a function of MultiViews
. You can disable it in your .htaccess
like this:
Options -MultiViews
Upvotes: 1