読み込み中...
読み込み中...
.htaccessリダイレクト・リライトルールの生成
# Generated .htaccess
RewriteEngine On
# HTTP → HTTPS 強制
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# www → non-www
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [L,R=301]