I have a Java AppEngine web application. I noticed in the dashboard in admin console of appengine that there is a URI error encountered everyday for /robots.txt.
How to remove the error?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
robots.txtis a magic URL used by search engine and other robots before processing your site. See wikipedia for more details.The best way of dealing with this error on GAE is to put a robots.txt file, and define it as a static file in your
app.yamlfor gae/python:And in
appengine-web.xmlof gae/java:Of course, you may just as well ignore the errors, they don’t matter to anyone but yourself (no human is encountering the error).