I tried the helloworld example app https://developers.google.com/appengine/docs/python/gettingstartedpython27/helloworld on the 1.9.0 python SDK engine and got a "The requested URL / was not found on this server" error. The strange thing is it works when tested with 3 other browsers. The log of running dev_appserver.py helloworld/
shows
INFO 2014-03-01 15:43:33,999 module.py:612] default: "GET / HTTP/1.0" 200 13
INFO 2014-03-01 15:43:49,510 module.py:612] default: "GET / HTTP/1.1" 200 13
INFO 2014-03-01 15:43:50,169 module.py:612] default: "GET /favicon.ico HTTP/1.1" 404 154
INFO 2014-03-01 15:45:03,572 module.py:612] default: "GET / HTTP/1.0" 200 13
The one with a 404 error corresponds to accessing the app with firefox while the others are all successes with lynx, chromium and w3m. Can somebody help to see if it can be reproduced? So it seems firefox is insisting on looking for /favicon.ico. Why? Really strange!
/favicon.ico
it is a cool thing to have.. – Lipis