I am trying to redirect from this:
www.mysite.com/product.html?item=example
to:
www.mysite.com/example
I have this rewrite rule in my .htaccess file but it isn't working:
RewriteRule ^/product\.html\?item=(.*)$ /$1 [R=301,L]
Any help is much appreciated.
Here's what I have now:
RewriteCond %{QUERY_STRING} ^item=(.*)$
RewriteRule ^/product\.html$ /%1 [R=301,L]
And here is the Final result after I got rid of forward slash at the beginning of the rule and added a question mark at the end of the rule to get rid of the query string:
RewriteCond %{QUERY_STRING} ^item=(.*)$
RewriteRule ^product\.html$ /%1? [R=301,L]