I want to have case insensitive URLs using Apache\'s mod_speling
module, but this is producing unwanted lists of \"multiple options\" whilst the Apache documention
On Ubuntu 12.04 LTS using Apache 2.2, I did the following:
Create speling.conf
in ${APACHE}/mods-available
to provide the config options.
CheckSpelling On
CheckCaseOnly On
Link speling.conf
and speling.load
into the enabled modules directory ${APACHE}/mods-enabled
:
# cd ../mods-enabled
# ln -s ../mods-available/speling.conf speling.conf
# ln -s ../mods-available/speling.load speling.load
Restart the server.
# service restart apache2