The issue I am trying to solve is that I have a folder with a name that has funny capitalizations, e.g. TeStPage. I would like all requests to my domain, in all versions of caps, redirect to that page.
I tried a simple:
Redirect /testpage http://www.mydomain.com/TeStPage
But that crashed my site, because it said 'Non-URL'.
How do I do .htaccess re-direct to handle all capitalization cases to be redirected to my /TeStPage url?
I searched Apache's documentation for the syntax and rules of .htaccess, but couldn't find a lot of details. Can someone point me to a good tutorial/reference file I can use to learn more about .htaccess commands in depth?
Thanks.