I think my eyes are going to fall out from all the searches ive made to find a solution for this that works on a shared host.
I tried this... but it doesnt work.
RewriteEngine on
CheckSpelling on
The only Rough solution i got is to do the case manually with an internal redirect. Like this.
RewriteEngine on
RewriteBase /~quux/
RewriteRule ^foo\.html$ bar.html
Is there absolutely no way to mention [a-z] and [A-Z] into a RewriteRule to get this done?
I find it terribly stupid from Apache not to provide a simple solution for this.