Googlebot 和 FAMUOS $_SERVER['HTTP_ACCEPT_LANGUAGE']

发布于 2024-10-29 08:51:55 字数 302 浏览 5 评论 0原文

我在我的网站上做了 $_SERVER['HTTP_ACCEPT_LANGUAGE'] ,其中有两个语言 PL 和 EN。

我真的没有怀疑 Google 会以这种方式将我的网站(即 TITLE 和 DESC)从 PL 重新索引为 EN。

它不应该使用 PL,因为它正在爬行波兰域名,hmmmmrrrr 无法理解?

无论如何,我可以检测到 googlebot 并再次将它们设置为 PL

但这不会是伪装或其他什么东西?

任何人都可以告诉我什么是解决问题的好解决方案,这样我和谷歌都会很高兴?

I did $_SERVER['HTTP_ACCEPT_LANGUAGE'] on my site, where have two langs PL and EN.

I really didn't suspect Google would reindex my site (meaning TITLE and DESC) from PL to EN that way.

Shouldnt it use PL since it is crawling Polish domains, hmmmmrrrr cant understand ?

Anyway i can detect googlebot and set them PL again

But it wouldnt be cloacking or smthing ?

Anyone could tell me what would be good solution to get it straight so, me and Google would be happy ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浊酒尽余欢 2024-11-05 08:51:55

HTTP_ACCEPT_LANGUAGE表示CLIENT(客户端浏览器,在本例中为爬虫)支持的语言,它是客户端随请求发送的信息(如ip等),而不是服务器发送给客户端的信息。
要告诉客户您的网站支持哪些语言,您必须使用元标记,例如在您的情况下

<meta http-equiv="content-language" content="pl, en" />

将告诉客户您的网站更喜欢 PL 语言但支持 ENG。

这是有关它的 w3c 页面

the HTTP_ACCEPT_LANGUAGE means the language that the CLIENT (the client browser,in this case the crawler)supports and it's an information the client send with the request(like the ip,etc.),it's not something the server sends to the client.
To tell the client what languages your website supports you must use the meta tags,in your case for example

<meta http-equiv="content-language" content="pl, en" />

will tell the client that you site prefer PL language but support ENG.

This is the w3c page about it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文