.htaccessにてwwwに統一、かつhttps化
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^hoge\.co\.jp RewriteRule (.*) http://www.hoge.co.jp/$1 [R=301,L] RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L] </IfModule>