First you must add this to your httpd.conf:
RewriteMap lc int:tolower
Then paste the code below into .htaccess
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} ^[^AZ]*[AZ].* RewriteRule ^ ${lc:%{REQUEST_URI}} [L,R=301]
This code resets the url for example from
www.tESTUrl.com/sOMePath/?q=SomeStringHere
to www.tESTUrl.com/sOMePath/?q=SomeStringHere
source share