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
(.htaccessまたは Apache 構成ファイル内。)
.htaccess
RewriteCondあなたも使用できるかもしれない代替手段は...
RewriteCond
RewriteCond %{HTTPS} !^on$