NoNameZ
NoNameZ

Reputation: 795

Apache see index as index.php

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

Answers (1)

Sean Bright
Sean Bright

Reputation: 120654

This is a function of MultiViews. You can disable it in your .htaccess like this:

Options -MultiViews

Upvotes: 1

Related Questions