|
How can calls to my website be case insensitive? |
|
|
Doing this will make requests for index.html, INDEX.HTML, IndEx.HtMl, etc. to all return the same page.
An apache module called mod_speling has been compiled and loaded into the webserver however it is turned off by default.
To turn it on for a directory (and sub directories) add the line 'CheckSpelling On' to a .htaccess file in that directory.
Please read the apache mod_speling page as there is a couple of other things this module will do, like correcting calls for pages that have one one character differant (returns index.html when someone asks for ondex.html).
|