Hi everyone and happy new year.
I am trying to remove some extra useless parameters from my URLs because in google webmaster tools, they are spotted as duplicate content .
Here is an exemple of what i see :
/subf/Page-15.html
/subf/Page-15.html?change_font=large
I would like to remove the change_font parameter. I have tried the following in my hthaccess :
RewriteCond %{query_string} ^.+
RewriteRule ^(.*)$ http://www.mysite.com/$1? [R=301,L]
However this remove some other parameters necessary for the site, so i tried the following :
RewriteCond %{query_string} ^.change_font
RewriteRule ^(.*)$ http://www.mysite.com/$1? [R=301,L]
I does not redirect....
Would be greateful for any suggestion
Regards