Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 BOTTLE.PY 和 Apache 强制建立 HTTPS 连接。HTTPS 运行良好,我只需要确保客户端通过 SSL 连接。有没有办法强制这种行为?最好我希望浏览器重定向到等价物。HTTPS 连接 如果是 HTTP 连接。正在尝试。
您可以通过以下方式执行此操作mod_rewrite:
mod_rewrite
RewriteEngine On RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*) https://your_server.com/$1
(在 a.htaccess或 Apache 配置文件中。)
.htaccess
RewriteCond您也可以使用的替代方法是...
RewriteCond
RewriteCond %{HTTPS} !^on$