出于安全方面的考虑,这里使用标准端口接收请求并跳转到测试开发的端口。
建立redirect.py文件,用root账户输入命令:
#python redirect.py
redirect.py文件内容如下。
import tornado.ioloop
import tornado.web
index_content=”’
<html>
<head>
<meta http-equiv=”Content-Language” content=”zh-CN”>
<meta HTTP-EQUIV=”Content-Type” CONTENT=”text/html; charset=gb2312″>
<meta http-equiv=”refresh” content=”2;url=http://dstools.wanghz.cn:8888″>
<title>DSTools</title>
</head>
<body>
Redirecting to DSTools Notebook …<br />
</body>
</html>
”’
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write(index_content)
Handlers=[
(r"/", MainHandler),
]
application = tornado.web.Application(Handlers)
if __name__ == “__main__”:
application.listen(80)
tornado.ioloop.IOLoop.instance().start()
转载请注明:王杭州的个人网页 » 使用Tornado实现页面跳转