.htaccessでwwwなしhttpsに統一
2018-12-22
https://bstestsite.com
に統一したい場合
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://bstestsite.com/$1 [R=301,L]
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.bstestsite\.com)(:80)?
RewriteRule ^(.*) https://bstestsite.com/$1 [R=301,L]