私はこれを試しています:
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()
ただし、static_pathにあるfavicon.ico
を提供し続けます(上記のように、2つの異なるパスに2つの異なるfavicon.ico
がありますが、static_path
)。
削除 static_path
アプリの設定から。
次に、ハンドラーを次のように設定します。
handlers = [
(r'/(favicon\.ico)', tornado.web.StaticFileHandler, {'path': favicon_path_dir}),
(r'/static/(.*)', tornado.web.StaticFileHandler, {'path': static_path_dir}),
(r'/', WebHandler)
]
Favicon.icoを括弧で囲み、正規表現でピリオドをエスケープする必要があります。あなたのコードは
favicon_path = '/path/to/favicon.ico' # Actually the directory containing the favicon.ico file
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()
例えば.
settings = dict(
static_path=os.path.join(os.path.dirname(__file__), 'static'),
static_url_prefix="/adtrpt/static/",
)
カスタムハンドラーをハンドラーに追加する
handlers.append((r"/adtrpt/static/(.*)", MyStaticFileHandler, {"path": os.path.join(os.path.dirname(__file__), 'static')}))
次に、カスタムメソッドを実装します。
class StaticHandler(BaseHandler):
def get(self):
path = self.request.path
print(path)
self.redirect(BASE_URI + path)