Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Google punish content duplication across multiple country domains?

I like the way Google handles internationalization, with domains such as google.co.uk, google.nl, google.de etc. I'd like to do this for my own site, but I'm concerned that Google will interpret this as content duplication, particularly across countries that speak the same human language, as there won't be any translation to hint that the content is different. My site is a web application, not a content farm, so is this a legitimate concern? Would I be better off with subdomains of my .com? Directories?

like image 317
Logan Koester Avatar asked Apr 30 '10 03:04

Logan Koester


2 Answers

Yes, Google will punish content duplication no matter where you put it in - across multiple country domains, different subdomains, different subdirectories, anything.

Building on top of Alex's example:

http://www.example.com/en-us/
http://www.example.com/en-au/

Most probably en-us and en-au will nearly be duplicate assuming the content is the same and US English is not really any different from AU English.

Solution Suggestion #1: Use the robots meta tag

What you can do is set a robots meta tag in the head section of all secondary pages so that Google will know to skip those pages. The meta tag as follows:

<meta name="robots" content="noindex,follow"/>

This tells Google to not index the content of the page but still follow any available links.

Taking the Google example itself, you would create a main domain (in Google's case, google.com) which will check the visitor's location and redirect accordingly. The main domain should be indexable, whereas the secondary domains (the destination of the redirections) should not be indexable, as long as it is using the same language as the main domain (thus seen as duplicates).

Solution Suggestion #2: Specify the canonical

Another alternative to this is using a canonical hint to tell Google that this same page is actually accessible from multiple URLs.

Carpe diem on any duplicate content worries: we now support a format that allows you to publicly specify your preferred version of a URL. If your site has identical or vastly similar content that's accessible through multiple URLs, this format provides you with more control over the URL returned in search results. It also helps to make sure that properties such as link popularity are consolidated to your preferred version.

It's better to read about this from the Official Google Webmaster Central Blog itself. :)

like image 43
Amry Avatar answered Sep 24 '22 02:09

Amry


Most sites use something like this

http://www.example.com/en-us/
http://www.example.com/en-au/

There is no reason however why you can not forward http://www.example.com.au to the second address above. It would probably be best to send a 301 header too to tell Google and other bots that the address is permanently at the new address.

Hosting them all at one domain has the benefit that any SEO stuff like PageRank is consolidated onto one domain.

like image 184
alex Avatar answered Sep 24 '22 02:09

alex