🕸
.htaccessを使ったHTTPSリダイレクトのサンプルコード
サンプルコード
RewriteEngine On
RewriteBase /
# HTTPリクエストをすべてHTTPSにリダイレクト
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
RewriteEngine On
RewriteBase /
# HTTPリクエストをすべてHTTPSにリダイレクト
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]
Discussion