Question

How to redirect this url with .htaccess

http://www.example.com/products.php?IDZ=0-0-0-106-1&start=156

to

http://www.example.com/

301 permanent redirection

Was it helpful?

Solution

RewriteCond %{REQUEST_URI}  ^/products\.php$
RewriteCond %{QUERY_STRING} ^IDZ=(.*)$ [OR]
RewriteCond %{QUERY_STRING} ^IDZ=(.*)&start=(.*)$
RewriteRule ^(.*)$ http://www.example.com/? [R=302,L]

I solved the issue this may be helpful for other people

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top