我们只有一个TLD。
我们使用路径为不同的区域和语言提供不同的内容,例如:
example.com/CA/fr-CA (French Canadian for Canada)## Heading ##
example.com/AT/de-AT (Austrian German for Austria)这些页面使用rel="alternate" hreflang="xx-YY"相互链接,如下所述:
https://support.google.com/webmasters/answer/189077?hl=en
有一个指向hreflang="x-default"的example.com/链接
这是标签的片段
<link rel="alternate" href="https://www.example.com/" hreflang="x-default" />
<link rel="alternate" href="https://www.example.com/AE/en-GB" hreflang="en-AE" />
<link rel="alternate" href="https://www.example.com/GB/en-GB" hreflang="en-GB" />
<link rel="alternate" href="https://www.example.com/US/en-US" hreflang="en-US" />
<link rel="alternate" href="https://m.example.com/" media="only screen and (max-width: 754px)" hreflang="x-default" />
<link rel="alternate" href="https://m.example.com/AU/en-AU" media="only screen and (max-width: 754px)" hreflang="en-AU" />
<link rel="alternate" href="https://m.example.com/AT/de-AT" media="only screen and (max-width: 754px)" hreflang="de-AT" />因为我们有一个单独的移动站点,所以我们还使用rel="alternate"和media="only screen and (max-width: 754px)"链接到等效的移动url。
Google网站管理员工具报告
您的站点没有hreflang标记。
不清楚为什么,因为他们在场。
我的想法/怀疑/问题:
我们是否只需要耐心等待这些hreflang标签被识别?我们要等多久?
谷歌不喜欢将移动和国际化链接结合起来吗?如果是的话,我们可以放下手机。
谷歌是否需要默认语言,例如hreflang="en"?这对我们来说毫无意义,因为我们的所有内容都是区域化的。如果这是真的,我该怎么办?
发布于 2016-11-07 16:59:53
每个页面的移动版本被视为桌面页的替代版本。在移动版本上,使用规范链接指向桌面版本。仅在手机上使用一个规范链接,并使用它指向同一语言/区域的桌面版本。无需在页面的移动版本上使用hreflang。
类似地,在桌面页面上,使用hreflang链接到所有其他桌面页面。不需要链接到移动页面(除了移动版本的相同的lang/region)。
您可以在上使用我的hreflang测试工具来验证您的标记。
https://stackoverflow.com/questions/40469239
复制相似问题