Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在运行部署在本地 IIS 中的我的 asp.net 网站时,我收到一条消息 User-agent: * Disallow: /。为什么我会收到这条消息?我怎样才能克服这个问题并成功运行我的网站?
提前致谢
这是您robots.txt文件中的条目。
robots.txt
翻译过来就是这个意思:
本User-agent: *节的含义适用于所有机器人。告诉机器人它不应该访问网站上的Disallow: /任何页面。
User-agent: *
Disallow: /
注意:在您的顶级目录中检查robots.txt文件,然后将其删除或更改配置以允许访问。