我正在尝试使用 robots.txt 禁用所有进入我的开发服务器以进行测试的网络爬虫
当我在浏览器中输入 127.0.0.1:8000/robot.txt 时。为什么robot.txt 没有出现在我的浏览器中?
Page not found (404)
127.0.0.1:8000/robot.txt
网址.py:
from django.http import HttpResponse
(r'^robots\.txt$', lambda r: HttpResponse("User-agent: *\nDisallow: /", mimetype="text/plain")),