CherryPy是否可以将HTTP重定向到HTTPS。例如,如果有人通过http://example.com访问,则下面的代码为https://example.com,我希望将他们重定向到纯HTTP URL(也许是301重定向?)我该如何实现?
#!/usr/bin/env python
from pprint import pformat
from cherrypy import wsgiserver
def app(environ, start_response):
status = '200 OK'
response_headers = [('Content-type', 'text/plain')]
start_response(status, response_headers)
return [pformat(environ)]
server = wsgiserver.CherryPyWSGIServer(('0.0.0.0', 80), app)
try:
server.start()
except KeyboardInterrupt:
server.stop()
您可以检查request.scheme
是否为“ https”,然后可以引发重定向。
Andrew Cox的链接再次断开,这是指向该链接的更新的链接。我没有足够的观点来评论他的答案,因此没有新答案。
https://cherrypy.readthedocs.org/en/3.3.0/refman/_cprequest.html#cherrypy._cprequest.Request.scheme