35

我正在尝试这个:

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)。

4

3 回答 3

56

static_path从应用程序设置中删除。

然后将您的处理程序设置为:

handlers = [
            (r'/(favicon\.ico)', tornado.web.StaticFileHandler, {'path': favicon_path_dir}),
            (r'/static/(.*)', tornado.web.StaticFileHandler, {'path': static_path_dir}),
            (r'/', WebHandler)
]
于 2012-04-15T20:23:21.383 回答
6

您需要用括号包裹 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()
于 2014-06-02T23:31:04.417 回答
0

有两种方法可以做到这一点。

1.在设置中使用static_url_prefix 。

例如

settings = dict(
    static_path=os.path.join(os.path.dirname(__file__), 'static'),
    static_url_prefix="/adtrpt/static/",
)

2.使用自定义处理程序

将自定义处理程序附加到处理程序

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)
于 2019-01-24T10:30:43.603 回答