php - Convert url to lower case using htaccess except query string -
am struggling htaccess problem.
i need convert urls uppercase lowercase. query string alone should same.
for example,
www.testurl.com/somepath/?q=somestringhere
should converted as,
www.testurl.com/somepath/?q=somestringhere
please fix this. in advance.
first have add httpd.conf:
rewritemap lc int:tolower
then paste below code .htaccess
rewriteengine on rewritebase / rewritecond %{request_uri} ^[^a-z]*[a-z].* rewriterule ^ ${lc:%{request_uri}} [l,r=301]
this code redirct url
www.testurl.com/somepath/?q=somestringhere
to www.testurl.com/somepath/?q=somestringhere
Comments
Post a Comment