カテゴリー
その他

httpからhttpsへのリダイレクト

.htaccessに記述。こんな感じでしたでしょうか。

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTPS} off
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</IfModule>

SSL化とかでちゃんとやるなら、HSTSを使いましょう。とのことです。