Forum Moderators: phranque
First I apologise if this is a constantly repeated thread but I couldn’t find a solution by searching 
I need to set up my htaccess to solve the problem of capitalisation in urls so that mysite.com/pAGe.html goes to mysite.com/page.html but have no idea what I’m doing with this.
Can anyone give me a simple copy and paste solution here or is that not possible?
Thanks
The distiction is important.
A rewrite will cause infinite Duplicate Content.
A redirect will only allow the canonical form to be indexed.
The correct specification is for that URL to serve "404 Not Found" if the URL is really supposed to be all lower case for example.
If you don't have config-level access, then the problem is difficult and very inefficient to fix; It requires about 29 RewriteRule code lines in a row -- 26 for each individual capital letter, plus a few overhead rules to implement recursion and prevent running all the code unless it is really necessary.
What level of access do you have?
Jim