.htaccessでhttpsリダイレクト

2018-03-14 14:24

#Force SSL
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>

◆さくらのレンタルサーバーの場合

#Force SSL for Sakura
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:X-Sakura-Forwarded-For} ^$
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>

ロードバランサーによっては違うと思うので
都度調べることにする。
もちろんnginxは無意味。



Category: その他

Tag: