如何使用robots.txt只允许爬虫访问index.php?

发布于 2024-08-10 02:03:06 字数 104 浏览 5 评论 0原文

如果我只想允许爬虫访问index.php,这行得通吗?

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

If i want to only allow crawlers to access index.php, will this work?

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

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

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

发布评论

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

评论(5

守不住的情 2024-08-17 02:03:06

是的,它会起作用。以下是 Google 网站站长工具的测试结果。

Url
http://www.example.org/index.php

Googlebot
Allowed by line 3: Allow: /index.php

Googlebot-Mobile
Allowed by line 3: Allow: /index.php

但是,请记住,使用此配置时,除非使用完全限定路径访问该页面,否则不会对您的网站主页进行爬网。
换句话说,http://www.example.org/ 是被禁止的,而 http://www.example.org/index.php 是允许的。

如果您希望主页可供访问,这里有一个更好的文件版本。

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

Yes, it will work. Here's the test result from the Google Webmaster Tool.

Url
http://www.example.org/index.php

Googlebot
Allowed by line 3: Allow: /index.php

Googlebot-Mobile
Allowed by line 3: Allow: /index.php

However, remember that with this configuration your site homepage won't be crawled unless the page is accessed with the full qualified path.
In other words, http://www.example.org/ is forbidden while http://www.example.org/index.php is allowed.

If you want your homepage to be accessible, here's a better version of your file.

User-agent: *
Disallow: /
Allow: /index.php
Allow: /$
梦初启 2024-08-17 02:03:06

尝试交换禁止/允许的顺序:

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

请参阅维基百科中的此信息:

“但是,为了兼容所有
机器人,如果你想允许单个
否则不允许的文件内
目录,您需要放置允许
首先是指令,然后是
不允许,例如:"

http://en.wikipedia.org/wiki/Robots.txt< /a>

尽管如此,我还是不希望它能太一致地工作

Try swapping the order of Disallow / Allow:

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

See this info from wikipedia:

"Yet, in order to be compatible to all
robots, if you want to allow single
files inside an otherwise disallowed
directory, you need to place the Allow
directive(s) first, followed by the
Disallow, for example:"

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

Still I wouldn't expect it to work too consistently

冷默言语 2024-08-17 02:03:06
User-agent: *

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

Allow: /index.php
Disallow: /
ζ澈沫 2024-08-17 02:03:06

您可以使用 Google Robots 工具进行结帐。我永远不会在 robots 文件中放入任何秘密目录,因为我猜测像下面这样的行对于某些蜘蛛来说就像蜂蜜一样。

Disallow: /secret

You can use the Google Robots tool to checkout. I would never put any secret directories in the robots file as I would guess that a line like below would be as honey for certain spiders.

Disallow: /secret
彼岸花ソ最美的依靠 2024-08-17 02:03:06
User-agent: *
Allow: /$
Allow: /index.php
Allow: /sitemap.xml
Allow: /robots.txt
Disallow: /

Sitemap: http://www.your-site-name.com/sitemap.xml
User-agent: *
Allow: /$
Allow: /index.php
Allow: /sitemap.xml
Allow: /robots.txt
Disallow: /

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