I want to make any page start with: /index.php?route=product/browse
return a 410, to get it removed from Googles index.
This rule works fine on http://localhost, but when I use it on my live Http://www.blahblah.com site, it doesn't work.
Code: Select all
RewriteCond %{QUERY_STRING} ^route=product/browse [NC]
RewriteRule ^index\.php$ /? [NC,R=410,L]
Cheers!