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

Archive for 1月 28th, 2010

URLを統一でSEO / mod_rewriteを使う

木曜日, 1月 28th, 2010 Posted in SEO | No Comments »

wwwなしと、ドメイン直下のindex.htmlがない URLに統一する。 [sourcecode language="plain"] 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] [/sourcecode] 以上です Read more..