谷歌元机器人
我有一个问题:
如果我将此代码放入我的网站中:
<META NAME="robot" CONTENT="noindex,nofollow">
Google 将不会搜索特定的页面,对吧?不是所有网站。
I have a question:
If I put this code in my website:
<META NAME="robot" CONTENT="noindex,nofollow">
The google won't search the specific page, right? not all website.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用NOINDEX,Google 不会将此页面中的任何内容包含在其索引中(该页面对于 Google 搜索来说是不可见的)。
使用NOFOLLOW,Google 机器人不会尝试跟踪此页面上的任何链接,因此当前页面链接到的这些页面将不会包含在 Google 索引中,除非可以通过其他方式(通过 Google 机器人)联系到他们。
请注意,问题中的代码片段为此 META 标记使用了错误的名称。
ROBOTS
需要采用复数形式,而不是ROBOT
。虽然上/下/混合大小写并不重要,但我不相信机器人会尝试这两个名称。顺便说一句,
相当于
而且,是的!网站的其余部分将照常被 Google 编入索引,除非排除其他机器人。
关于 Google 机器人解释 META 标记的方式的官方说法可以在 Google 网站管理员中心官方博客
With NOINDEX, Google will not include any content from this page in its index (The page will be invisible to Google searches).
With NOFOLLOW, Google bot will not try and follow any link on this page, hence these pages that the current page links to will not be included in Google index, unless they can be reached (by Google bot) in other ways.
Beware that the snippet in the question uses the wrong name for this META tag.
ROBOTS
needs to be in its plural form, notROBOT
. While upper/lower/mixed casing doesn't matter, I do not believe the bots will try both names.BTW,
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
is equivalent to<META NAME="ROBOTS" CONTENT="NONE">
And, yes! The rest of the web site will be indexed by Google as normally, unless of other bot exclusions.
The official word on the way Google bots interpret the META tags can be found
on the Official Google WebMaster Central Blog