我最近在我的网站上添加了德语支持,现在我想在搜索结果中向德语访问者显示我的网站的德语版本,并向所有其他访问者显示英语版本。我已将此链接标记添加到我的默认页面(https://example.com/
):
桌面
<link rel="canonical" href="https://example.com/">
<link rel="alternate" media="only screen and (max-width:651px)" href="https://m.example.com/">
<link rel="alternate" href="https://example.com/" hreflang="x-default">
<link rel="alternate" href="https://example.com/?hl=de" hreflang="de">
移动
<link rel="canonical" href="https://example.com/">
<link rel="alternate" href="https://m.example.com/" hreflang="x-default">
<link rel="alternate" href="https://m.example.com/?hl=de" hreflang="de">
此德语版本(hreflang
)的https://example.com/?hl=de
代码:
桌面
<link rel="canonical" href="https://example.com/">
<link rel="alternate" media="only screen and (max-width:651px)" href="https://m.example.com/?hl=de">
<link rel="alternate" href="https://example.com/" hreflang="x-default">
<link rel="alternate" href="https://example.com/?hl=de" hreflang="de">
移动
<link rel="canonical" href="https://example.com/">
<link rel="alternate" href="https://m.example.com/" hreflang="x-default">
<link rel="alternate" href="https://m.example.com/?hl=de" hreflang="de">
但我有一个问题。当我在Google上搜索Youtube时,它只返回德语版的Youtube(https://www.youtube.com/?gl=DE&hl=de
)。但是当我搜索我的网站时,Google会将我网站的英文版本显示为默认版本,将德语版本显示为片段。我的代码出了什么问题?
答案 0 :(得分:0)
您实施了错误的canonical URL。
如果您有多个网址可访问的单个网页,或具有相似内容的不同网页(例如,包含移动版和桌面版的网页),则应明确告知Google哪个网址具有权威性(规范)页。
您有桌面和移动的不同网站,以及两种语言英语和德语。它们提供不同的内容,您应该相应地更新规范URL。
<强>桌面强>
<link rel="canonical" href="https://example.com/">
移动强>
<link rel="canonical" href="https://m.example.com/">
桌面德语
<link rel="canonical" href="https://example.com/?hl=de">
移动德语
<link rel="canonical" href="https://m.example.com/?hl=de">
答案 1 :(得分:0)
根据 Google recommendations Duplicate content :
使用顶级域名:为了帮助我们提供最合适的文档版本,请尽可能使用顶级域名来处理特定国家/地区的内容。我们更有可能知道http://www.example.de包含以德国为重点的内容,例如,http://www.example.com/de或http://de.example.com。
根据 Google recommendations Separate URLs :
在桌面页面(http://www.example.com/page-1)上,添加:
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://m.example.com/page-1">
并在移动页面(http://m.example.com/page-1)上,所需的注释应为:<link rel="canonical" href="http://www.example.com/page-1">
因此,您需要从提示中删除此元链接
<link rel="canonical" href="https://example.com/">
。