WEBサイトの運用でたまに使います。
.htaccessに記載します。
1.wwwありに統一する場合
RewriteEngine on
RewriteCond %{HTTP_HOST} ^seotemplate.biz
RewriteRule ^(.*)$ http://www.hoge.com/$1 [R=301,L]
2.index.htmlなしに統一する場合
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{THE_REQUEST} ^./index.html
RewriteRule ^(.)index.html$ http://www.example.com/$1 [R=301,L]
<注意事項>
さくらのレンタルサーバでは
Options +FollowSymLinks
をいれると500エラーが出ます。
他のサーバーでは未確認。
→ さくらサーバをお使いの方で index.htmlなしに統一したい場合は、以下のコードを記載して下さい。
RewriteEngine on
RewriteCond %{THE_REQUEST} ^./index.html
RewriteRule ^(.)index.html$ http://www.example.com/$1 [R=301,L]