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