HOMEABOUTBLOGCODEbacked out

.htaccess 301 Redirect

"www.youdomain.com" を "yourdomain.com" へ Redirect する場合 .htaccess に

  1. RewriteEngine on
  2. RewriteCond %{HTTP_HOST} ^(www\.yourdomain\.com)(:80)? [NC]
  3. RewriteRule ^(.*)$ http://yourdomain.com/$1 [R=301,L]
  4. RewriteCond %{THE_REQUEST} ^.*/index.html
  5. RewriteRule ^(.*)index.html$ http://yourdomain.com/$1 [R=301,L]

Posted by Takahiro.

2010.02.15 Mon at 22:00

ReTweet This!

COMMENT