I have a multilingual site and I have the following <link rel="alternate" > in the head section.
<link href="http://www.example.com/en" rel="canonical" />
<link rel="alternate" hreflang="en" href="http://www.example.com/en" />
<link rel="alternate" hreflang="ja" href="http://www.example.com/ja" />
<link rel="alternate" hreflang="zh-CN" href="http://www.example.com/zh-CN" />
<link rel="alternate" hreflang="ko" href="http://www.example.com/ko" />
<link rel="alternate" href="http://www.example.com" hreflang="x-default" />
I have read several articles including Google guidelines, but I'm still confusing to include the current language code for rel="alternate".
In the example above, the current languague is en. Should I include <link rel="alternate" hreflang="en" href="http://www.example.com/en" />?
rel=alternateis made for alternatives, and neither the blog post nor the webmaster article explains that. – fuxia Aug 14 '14 at 06:50rel-canonicalandrel=alternatefor the same purpose? Sounds like a serious bug to me. I hesitate to implement a workaround for this duplicated functionality in our plugin with more than 50k users. – fuxia Aug 27 '14 at 09:39