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
mod_speling
Do you really want case insensitive URL? Why not just force lowercase urls, like this?
RewriteEngine On RewriteMap lc int:tolower RewriteRule (.*) ${lc:$1} [R]
Have a look at http://www.issociate.de/board/post/265865/make_URL