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

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top