Hello,
I am using following rewrite rule:
RewriteRule ^(domain)/?([a-zA-Z0-9_]*/?$ /new.php?state=$1&kwt=%3 [nc,L]
this is working perfect, if somebody visits /DoMain it redirects to /new.php?state=DoMain( not case sensitive ) I would like to know if there is a way to make redirect url always lower case ? like such:
^(doMain)/?([a-zA-Z0-9_]*/?$ /new.php?state=domain
I am using following rewrite rule:
RewriteRule ^(domain)/?([a-zA-Z0-9_]*/?$ /new.php?state=$1&kwt=%3 [nc,L]
this is working perfect, if somebody visits /DoMain it redirects to /new.php?state=DoMain( not case sensitive ) I would like to know if there is a way to make redirect url always lower case ? like such:
^(doMain)/?([a-zA-Z0-9_]*/?$ /new.php?state=domain