Reputation: 9
I have a doubt about hreflang
code for Brazilian website that works on BR and EN versions. I'm working on SEO services and I need to know know why this English version isn't recognized by Googlebot.
The website is: http://presscell.com and the question is about the hreflang
code:
<link rel="alternate" hreflang="pt_BR" href="http://presscell.com.br" />
<link rel="alternate" hreflang="en_US" href="http://presscell.com" />
According Google's Webmaster Tools, both versions are ok:
So, what do I do?
Upvotes: 0
Views: 367
Reputation: 1058
Language code and region code need to be separated by dash, not underscore. So use en-US instead of en_US.
Upvotes: 2