Questions
-
How do I fix these duplicate URLs?
You have two changes I think you need to do. As Woj Kwasi says, you have URLs with and without "www.". I would most definately redirect the non-www traffic to www-URLs. Add the redirect in your .htaccess: RewriteEngine On RewriteCond %{HTTP_HOST} ^thegorillafirm.com [NC] RewriteRule ^(.*)$ http://www.thegorillafirm.com/$1 [L,R=301] Furthermore you need to set canonical links: http://thegorillafirm.com/bikes/"> This should be set in the index.asp file header. In a similar way you should set this for: http://thegorillafirm.com/surf/ http://thegorillafirm.com/snow/ This should help you remove the duplicate content warnings. Best regards, Rasmus
Technical SEO Issues | | rasmusbang0