Hi all,
Here is my htaccess code for url rewrite:
RewriteRule ^(.*)/test.php$ test.php?language=$1 [NC]
which will redirect
www.domain.com/english/test.php
to
www.domain.com/test.php?language=english
It is working fine...
But when i have extra variable with that url then it doesn't work.
e.g. www.domain.com/english/test.php?name=abc
should work like:
www.domain.com/test.php?language=english&name=abc
But it is not working..
Help !!