static.xxx.com
对应
(r"/(.*)", tornado.web.StaticFileHandler, dict(path=settings['static_path'])),
但是图片
http://static.xxx.com/static/test.jpg 可以访问
如何配置成
http://static.xxx.com/test.jpg 因为我不想要static
请问如何配置?
对应
(r"/(.*)", tornado.web.StaticFileHandler, dict(path=settings['static_path'])),
但是图片
http://static.xxx.com/static/test.jpg 可以访问
如何配置成
http://static.xxx.com/test.jpg 因为我不想要static
请问如何配置?