robots.txt to disallow all pages except one? Do they override and cascade?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-03 08:12:23

问题


I want one page of my site to be crawled and no others.

Also, if it's any different than the answer above, I would also like to know the syntax for disallowing everything but the root (index) of the website is.

# robots.txt for http://example.com/

User-agent: *
Disallow: /style-guide
Disallow: /splash
Disallow: /etc
Disallow: /etc
Disallow: /etc
Disallow: /etc
Disallow: /etc

Or can I do like this?

# robots.txt for http://example.com/

User-agent: *
Disallow: /
Allow: /under-construction

Also I should mention that this is a WordPress install, so "under-construction," for example, is set to the front page. So in that case it acts as the index.

I think what I need is to have http://example.com craweld, but no other pages.

# robots.txt for http://example.com/

User-agent: *
Disallow: /*

Would this mean disallow anything after the root?


回答1:


The easiest way to allow access to just one page would be:

User-agent: *
Allow: /under-construction
Disallow: /

The original robots.txt specification says that crawlers should read robots.txt from top to bottom, and use the first matching rule. If you put the Disallow first, then many bots will see it as saying they can't crawl anything. By putting the Allow first, those that apply the rules from top to bottom will see that they can access that page.

The expression rules are simple: the expression Disallow: / says "disallow anything that starts with a slash." So that means everything on the site.

Your Disallow: /* means the same thing to Googlebot and Bingbot, but bots that don't support wildcards could see the /* and think that you meant a literal *. So they could assume that it was okay to crawl /*foo/bar.html.

If you just want to crawl http://example.com, but nothing else, you might try:

Allow: /$
Disallow: /

The $ means "end of string," just like in regular expressions. Again, that'll work for Google and Bing, but won't work for other crawlers if they don't support wildcards.




回答2:


If you log into Google Webmaster Tools, from the left panel go to crawling, then go to Fetch as Google. Here you can test how Google will crawl each page.

In the case of blocking everything but the homepage:

User-agent: *
Allow: /$
Disallow: /

will work.




回答3:


http://en.wikipedia.org/wiki/Robots.txt#Allow_directive

The order is only important to robots that follow the standard; in the case of the Google or Bing bots, the order is not important.




回答4:


you can use this below both will work

User-agent: *
Allow: /$
Disallow: /

or

User-agent: *
Allow: /index.php
Disallow: /

the Allow must be before the Disallow because the file is read from top to bottom

Disallow: / says "disallow anything that starts with a slash." So that means everything on the site.

The $ means "end of string," like in regular expressions. so the result of Allow : /$ is your homepage /index



来源:https://stackoverflow.com/questions/19869004/robots-txt-to-disallow-all-pages-except-one-do-they-override-and-cascade

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!