「http://」から「https://」に自動転送
.htaccessに以下を記述
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</IfModule>
参考リンク:
301 Moved Permanently
「http://」から「https://」に自動転送
.htaccessに以下を記述
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</IfModule>
参考リンク:
コメント