【发布时间】:2013-06-04 15:17:52
【问题描述】:
我希望禁止 google 图像在这些路径中为我的图像编制索引,请让我知道我是否适合 robots.txt 中的此代码。
/images/otherimages/dir1/这里有几张图片
/images/otherimages/dir2/这里有几张图片
用户代理:googlebot
禁止:/otherimages/
【问题讨论】:
标签: robots.txt
我希望禁止 google 图像在这些路径中为我的图像编制索引,请让我知道我是否适合 robots.txt 中的此代码。
/images/otherimages/dir1/这里有几张图片
/images/otherimages/dir2/这里有几张图片
用户代理:googlebot
禁止:/otherimages/
【问题讨论】:
标签: robots.txt
有一个用于图像的特殊 googlebot。 这将排除两者:
User-Agent: Googlebot-Image
Disallow: /images/otherimages/dir1/
Disallow: /images/otherimages/dir2/
User-Agent: Googlebot
Disallow: /images/otherimages/dir1/
Disallow: /images/otherimages/dir2/
【讨论】: