在robots.txt ...
我想允许目录的索引或主页。
/landing/
我不想允许目录中的任何其他页面。
/landing/page
/landing/anypage
如何做到这一点?
答案 0 :(得分:1)
User-agent: *
Allow: /landing/$
Disallow: /landing/
根据Google网站管理员的说法,您可能只需要Allow
指令:
来源:https://developers.google.com/webmasters/control-crawl-index/docs/robots_txt?hl=en#order-of-precedence-for-group-member-records
答案 1 :(得分:0)
禁止:/ landing / *应该有效。