Questions
-
How to Fix the Errors with Duplicate Title or Content?
Hi Viggo, what you're describing here is a common issue but also easy to fix. If you can access and edit .htaccess on your server, you will only need to implement a simple rule which will redirect all traffic either to the www or non-www version of your website via a 301 redirect. If you want to force the use of "www" in all cases, your rule should look like this: RewriteCond %{HTTP_HOST} !^www.example.com [NC] RewriteCond %{HTTP_HOST} !^ $RewriteRule ^/(.*) http://www.example.com/$1 [L,R] You can refer here for more information.
Moz Tools | | marcinlejman0