主页 > 编程资料 > 编程更多 >
发布时间:2015-11-18 作者:网络 阅读:364次

如漫游器或“蜘蛛”程序Google 的主要抓取工具称为 Googlebot。此表格列出了在引用页日志中常能见到的 Google 抓取工具的相关信息,以及在 robots.txt、漫游器元标记和 X-Robots-Tag HTTP 指令中指定这些抓取工具应采用的方法

抓取工具用户代理HTTP(S) 请求用户代理
Googlebot(Google 网页搜索) GooglebotMozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)

(较少使用):Googlebot/2.1 (+http://www.google.com/bot.html)
Googlebot 新闻Googlebot-News
(Googlebot)
Googlebot-News
Googlebot 图片Googlebot-Image
(Googlebot)
Googlebot-Image/1.0
Googlebot 视频Googlebot-Video
(Googlebot)
Googlebot-Video/1.0
Google 移动Googlebot-Mobile[各种移动设备类型](compatible; Googlebot-Mobile/2.1+http://www.google.com/bot.html
Google Mobile AdSenseMediapartners-Google



Mediapartners

(Googlebot)
[各种移动设备类型](compatible; Mediapartners-Google/2.1+http://www.google.com/bot.html
Google AdSenseMediapartners-Google
Mediapartners
(Googlebot)
Mediapartners-Google
Google AdsBot 目标网页质量检查AdsBot-GoogleAdsBot-Google (+http://www.google.com/adsbot.html)

robots.txt

如果 Google 在 robots.txt 文件中识别出多个用户代理,则它会跟踪最具体的用户代理。如果您希望 Google 的所有抓取工具都能够抓取您的网页,则根本不需要 robots.txt 文件。如果您希望禁止或允许 Google 的所有抓取工具访问您的某些内容,则只需将 Googlebot 指定为用户代理即可。例如,如果您希望自己所有的网页都显示在 Google 搜索中,并希望在自己的网页上显示 AdSense 广告,则不需要 robots.txt 文件。同样,如果您不希望 Google 的所有抓取工具访问您的某些网页,则可禁止用户代理 Googlebot(系统会同时禁止 Google 的其他所有用户代理)。

但是,如果您希望进行更精确的控制,则可以设置地更加具体。例如,您可能希望自己所有的网页都显示在 Google 搜索的结果中,但又不希望 Google 抓取您个人目录中的图片。在这种情况下,您可以使用 robots.txt 禁止用户代理 Googlebot-image 抓取您 /personal 目录中的文件(同时允许 Googlebot 抓取所有文件),具体如下:

User-agent: Googlebot
Disallow:

User-agent: Googlebot-Image
Disallow: /personal

再举个例子,假设您希望自己的所有网页上都显示广告,但不希望这些网页出现在 Google 搜索的结果中。这时,您可以禁止 Googlebot,同时允许 Mediapartners-Google,具体如下:

User-agent: Googlebot
Disallow: /

User-agent: Mediapartners-Google
Disallow:

漫游器元标记

某些网页会使用多个漫游器 meta 标记针对不同的抓取工具指定不同的指令,例如:

<meta name="robots" content="nofollow"><meta name="googlebot" content="noindex">

在此示例中,Google 会综合使用所有的否定指令,因而 Googlebot 会同时遵循 noindex 和 nofollow 指令。


原文地址:http://www.52web-analytics.com/google-googlebot-gather.html?utm_source=tuicool&utm_medium=referral




关键字词: