さくらサーバーで「www」なしを「wwwあり」に統一するhtaccess
さくらサーバーで「www」なしを「wwwあり」に統一するhtaccess
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(hogehoge\.jp)(:80)? [NC]
RewriteRule ^(.*) https://www.hogehoge.jp/$1 [R=301,L]
さくらサーバーで「www」なしを「wwwあり」に統一するhtaccess
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(hogehoge\.jp)(:80)? [NC]
RewriteRule ^(.*) https://www.hogehoge.jp/$1 [R=301,L]
Comment