私はこれを試しています:
favicon_path = '/path/to/favicon.ico'
settings = {'debug': True,
'static_path': os.path.join(PATH, 'static')}
handlers = [(r'/', WebHandler),
(r'/favicon.ico', tornado.web.StaticFileHandler, {'path': favicon_path})]
application = tornado.web.Application(handlers, **settings)
application.listen(port)
tornado.ioloop.IOLoop.instance().start()
しかし、それはfavicon.ico
私のstatic_pathにあるものを提供し続けます(favicon.ico
上記のように、2つの別々のパスに2つの異なるがありますが、の1つをオーバーライドできるようにしたいですstatic_path
)。