This is How Google Bot Fetched My Site
T开发者_如何学JAVAhis 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.
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 like http://domain.com/LageX/
.
精彩评论