Meta title and meta description duplicates because of category filters

0

I have a problem with meta title and meta descriptions duplicates, pages like these below, google is understanding that they are different pages, which really is not.

basedosite.com.br/cintos-e-fivelas/

basedosite.com.br/cintos-e-fivelas/cintos/Cintos?O=OrderByReleaseDateDESC&map=c,c,specificationFilter_47

basedosite.com.br/cintos-e-fivelas/cintos-e-fivelas/cintos/Mulheres?O=OrderByReleaseDateDESC&map=c,c,specificationFilter_48

Are there any solutions to this type of problem?

    
asked by anonymous 20.07.2017 / 00:45

1 answer

0

Use your html to meta cannonical :

 <link rel=”canonical” href=”URL” />

This will indicate the serps which the main url of the content then redirect with 301 of the wrong url to the correct one. Wait a few days (it depends a lot on the crawling rate of the search engine for the domain), and check google webmaster tools if it was removed from the dashboard.

.htaccess redirect rule:

RewriteRule ^cintos-e-fivelas/cintos/Cintos?
O=OrderByReleaseDateDESC&map=c,c,specificationFilter_47$ /cintos-e-fivelas/ 
[L,R=301]

RewriteRule ^cintos-e-fivelas/cintos-e-fivelas/cintos/Mulheres?
O=OrderByReleaseDateDESC&map=c,c,specificationFilter_48$ /cintos-e-fivelas/ 
[L,R=301]
    
20.07.2017 / 13:43