さくらインターネットでhttp→httpsの301リダイレクト

RewriteEngine On
RewriteCond %{ENV:HTTPS} !^on$
RewriteCond %{HTTP:X-SAKURA-FORWARDED-FOR} ^$
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
参考)
さくらのSNI SSLでhttp→httpsリダイレクト – ヲレサイト
https://woresite.jp/2015/01/07/052816.html
さくらのレンタルサーバーで、.htaccess を使って http を https へリダイレクトして、www も無しで統一する | Latele Blog
https://latele.co.jp/blog/back-end/2016/0418_10
尚、ルートで設定しても、その配下のディレクトリにも
.htaccessがあると無効になるので、配下でも設定が必要。
また既存の設定がある場合は、最初に記載をする
変更前例)
DirectoryIndex index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([0-9A-Za-z)]+)_([0-9A-Za-z)]+)\.htm$ index.php?kenname=$1&searchsubmit=$2 [L]
RewriteRule ^([0-9A-Za-z)]+)_([0-9A-Za-z)]+)_([0-9A-Za-z)]+)\.htm$ index.php?kenname=$1&searchkubun=$2&searchsubmit=$3 [L]
RewriteRule ^id_unit_([0-9A-Za-z)]+)_([0-9A-Za-z)]+)\.htm$ index.php?id=$1&searchsubmit=$2 [L]
変更後例)
DirectoryIndex index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{ENV:HTTPS} !^on$
RewriteCond %{HTTP:X-SAKURA-FORWARDED-FOR} ^$
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteRule ^([0-9A-Za-z)]+)_([0-9A-Za-z)]+)\.htm$ index.php?kenname=$1&searchsubmit=$2 [L]
RewriteRule ^([0-9A-Za-z)]+)_([0-9A-Za-z)]+)_([0-9A-Za-z)]+)\.htm$ index.php?kenname=$1&searchkubun=$2&searchsubmit=$3 [L]
RewriteRule ^id_unit_([0-9A-Za-z)]+)_([0-9A-Za-z)]+)\.htm$ index.php?id=$1&searchsubmit=$2 [L]

タイトルとURLをコピーしました