.htaccessmod-rewriteseopaginationduplicate-content

mod rewrite removing pagination duplicate content


I have a problem with duplicate content...

my links are like this:

and other similar pages that has /pagina-1/ at the end

I am not good at mod rewrite.. but i tryed this code

RewriteCond %{QUERY_STRING} ^pagina-1/$
RewriteRule ^(.*) $1 [L,R=301]

it dosen't work... I would be glad to solve this!

thanks!


Solution

  • Try:

    RewriteRule ^(.*)/pagina-1/$ /$1/ [L,R=301]