Automatic virtual directories in Apache
The Apache web server has this interesting... quirk... which will convert directory requests of /foo/bar/ into /foo/bar.php (or another file extension) if the requested folder does not exist.
This is caused by
To turn it off, add
This is caused by
Options MultiViewsin the config files.
To turn it off, add
Options -MultiViews.
Categories: Technology