如何禁止某项操作?

发布于 2024-11-17 02:34:02 字数 134 浏览 2 评论 0原文

我想禁止 /questions/{ID}/foo 但不允许 /questions/{ID}

语法是 Disallow: /questions/*/foo 吗?

I'd like to disallow /questions/{ID}/foo but not /questions/{ID}.

Is the syntax Disallow: /questions/*/foo?

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

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

发布评论

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

评论(1

沉默的熊 2024-11-24 02:34:02

这里是开始寻找正确语法的好地方:

另请注意,用户代理或 Disallow 行支持通配符和正则表达式。用户代理字段中的“*”是一个特殊值,表示“任何机器人”。具体来说,您不能使用诸如 "User-agent: *bot*""Disallow: /tmp/*""Disallow: *.gif" 之类的行.

A good place to start looking for the proper syntax should be here:

Note also that globbing and regular expression are not supported in either the User-agent or Disallow lines. The '*' in the User-agent field is a special value meaning "any robot". Specifically, you cannot have lines like "User-agent: *bot*", "Disallow: /tmp/*" or "Disallow: *.gif".

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