gpt4 book ai didi

html - 来自网站管理员工具的 hreflang 问题

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:34:30 25 4
gpt4 key购买 nike

所以我只在我的 INDEX 页面上使用 href lang,像这样:

<link rel="alternate" href="https://example.com" hreflang="x-default" />

但我在谷歌网站管理员工具中不断收到这些错误

Google has detected that some pages on your site have implemented the rel-alternate-hreflang tag incorrectly. In particular, there seems to be a problem with incorrect language and region codes, or incorrect bi-directional linking (if page A links with hreflang to page B, there must be a link back from B to A as well). Google uses the hreflang attributes to serve the correct language or regional URL to the right users in search results. Until you correct the errors on the hreflang links, your website will not benefit from additional language or region targeting.

我不明白为什么?我搜索了很多,似乎找不到答案。

最佳答案

如果您没有任何列出语言环境的页面,则只需使用 x 而不是 x-default(或者实际上是语言代码,例如 en/de 等)

通常您会像这样在 set 中使用 hreflang=x-default(请注意备用页面中指示的几个语言环境)

<link rel="alternate" hreflang="x-default" href="http://www.example.com/" />
<link rel="alternate" hreflang="en-gb" href="http://en-gb.example.com/page.html" />
<link rel="alternate" hreflang="en-us" href="http://en-us.example.com/page.html" />
<link rel="alternate" hreflang="en" href="http://en.example.com/page.html" />
<link rel="alternate" hreflang="de" href="http://de.example.com/seite.html"/>

脚注:我找到了一个方便的 hreflang 生成器工具 here

关于html - 来自网站管理员工具的 hreflang 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38598734/

25 4 0