如何禁止 robots.txt 中的某个文件夹但某些文件除外?

发布于 2024-09-15 20:44:44 字数 1459 浏览 6 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无可置疑 2024-09-22 20:44:45

为了获得这种细粒度的控制,您最好在 HTML 中使用 robots 元标记。假设问题中的文件都是 HTML。

<meta name="robots" content="noindex" />

这应该放在文档的头部。

我发现这些标签也比 robots.txt 更容易维护。

To get that sort of fine grained control, you might be better off using a robots meta tag in your HTML. That is assuming the files in questions are all HTML.

<meta name="robots" content="noindex" />

This should be placed in the head of your document.

I find these tags easier to maintain than robots.txt as well.

歌入人心 2024-09-22 20:44:44

robots.txt 格式有一个非标准扩展,用于指定“允许”规则。并非每个机器人都会尊重它,并且某些机器人对它们的处理方式与其他机器人不同。

您可以在这篇维基百科文章中阅读更多相关信息: http://en.wikipedia.org/wiki /Robots_exclusion_standard#Allow_directive

There is a non-standard extension to the robots.txt format for specifying "Allow" rules. Not every bot honors it, and some bots process them differently than others.

You can read more about it in this Wikipedia article: http://en.wikipedia.org/wiki/Robots_exclusion_standard#Allow_directive

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文