システム・プログラム関連のメモや最新技術についてのメモを掲載

URLを統一でSEO / mod_rewriteを使う

wwwなしと、ドメイン直下のindex.htmlがない
URLに統一する。

RewriteEngine on

RewriteCond %{HTTP_HOST} ^www\.example\.com
RewriteRule (.*) http://example.com/$1 [R=301,L]

RewriteCond %{THE_REQUEST} ^.*/index.html
RewriteRule ^(.*)index.html$ http://%{HTTP_HOST}/$1 [R=301,L]

以上です


You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Leave a Reply