这就是 Google Bot 获取我的网站的方式
这就是 Google 机器人查看我的网站的方式 -
HTTP/1.1 302 Found Connection: close Pragma: no-cache cache-control: no-cache Location: /LageX/
这是什么意思?是好是坏?谢谢。
This is how a Google bot views my site -
HTTP/1.1 302 Found Connection: close Pragma: no-cache cache-control: no-cache Location: /LageX/
What does it mean? Is it good or bad? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很糟糕。
上述情况表明您网站的内容暂时在其他位置可用。除非您有充分的理由设置临时 (302) 重定向,否则您应该将内容移至预期位置或设置永久 (301) 重定向。
预计保存内容可用的 URI 的
Location:
标头本身无效,因为其值预计为绝对 URI — 类似http://domain.com /LageX/
。It's bad.
The above indicates that the content of your site is temporarily available at another location. Unless you have a good reason to set up a temporary (302) redirect, you should either move your content to where it is expected or set up a permanent (301) redirect.
The
Location:
header which is expected to hold the URI where the content is available is itself invalid, because its value is expected to be an absolute URI — something likehttp://domain.com/LageX/
.