I have inherited a website where the URLs contain capitalization, but the file structure on the server is all lowercase. This wasn't an issue until moving the site over to Apache.
I don't want to redirect the existing pages to a lowercase structure because the site is aged and ranking well on Google and Bing.
I've implemented mod_speling in my .htaccess by:
<IfModule mod_speling.c>
CheckCaseOnly on
CheckSpelling on
</IfModule>
However it re-writes all URLs to lowercase, which in the eyes of Google is a new URL.
Is there any way for me to treat all URLs as case insensitive whilst preserving the original URL?
For example: domain.com/Folder1/folder.htm
would resolve to the same place as domain.com/folder1/Folder.htm
?