tornado サーバーはデフォルトで favicon.ico を実行しなかったため、常にこのような情報を取得します。
[W 130626 10:38:16 web:1514] 404 GET /favicon.ico (192.168.1.57) 0.57ms
ソースの例を含めてさまざまな方法で web.staticfilehandler を使用していますが、うまく動作しませんでした。以下のように動作しました。
handlers = [
(r'/favicon.ico', tornado.web.StaticFileHandler,dict(url='/static/favicon.ico',permanent=False)),
(r'/static/(.*)', tornado.web.StaticFileHandler, {"path": "plserver"}),
]
私はそれをリダイレクトする必要があり、実際のWebページで動作するかどうか確信が持てませんでした。