使用 CherryPy 从 HTTPS 到 HTTP
CherryPy 是否可以将 HTTP 重定向到 HTTPS。举例来说,如果有人通过 http://example.com /example.com" rel="nofollow">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()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以检查
request.scheme
如果它是“https”,那么您可以引发重定向。请参阅 https://github.com/cherrypy/cherrypy/blob/f185ecd005d7fdbafb0ed83b0e49f05ac76e43fd/cherrypy/_cprequest.py#L218
You can check the
request.scheme
if it is "https" then you can raise a redirect.See https://github.com/cherrypy/cherrypy/blob/f185ecd005d7fdbafb0ed83b0e49f05ac76e43fd/cherrypy/_cprequest.py#L218
安德鲁·考克斯 (Andrew Cox) 的链接再次损坏,这是更新后的链接。我没有足够的观点来评论他的答案,因此有新的答案。
https://cherrypy.readthedocs.org /en/3.3.0/refman/_cprequest.html#cherrypy._cprequest.Request.scheme
Andrew Cox's link is broken again, here's the updated link to it. I don't have enough points to comment on his answer, hence the new answer.
https://cherrypy.readthedocs.org/en/3.3.0/refman/_cprequest.html#cherrypy._cprequest.Request.scheme