Search code examples
apache.htaccessmod-rewritelamphttp-redirect

Redirect url using .htaccess


How can i redirect the url using htaccess. I just tried a lot but couldnt find any proper way.

https://demo.com/test.php?value=345

to

https://demo.com/test.php?convert=1&p=345


Solution

  • Try this

    RewriteEngine on
    RewriteRule  ^test.php/?$ test.php?convert=1&p=$1  [NC,L]