You are currently browsing the デビラボ weblog archives for the day 木曜日, 1月 28th, 2010.
木曜日, 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..