我有一个目录static
,我已将static_url_prefix
设置为/static/
,因此可以在server/static/panel.html
访问我的HTML文件。现在,我想将server/panel
重定向到此网址。
我在应用程序中尝试了(r"/(panel\.html)", tornado.web.StaticFileHandler, {'path': ''})
上的一些变体,但它们都不起作用:-(。我怎样才能使其正常工作?
答案 0 :(得分:1)
使用RedirectHandler尝试以下路线:
(r"panel", tornado.web.RedirectHandler, {'url': '/static/panel.html'})