我正在尝试这个:
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
如上所述,我在两个单独的路径中有两个不同的 ',但我希望能够覆盖 ' 中的那个static_path
)。