忍者ブログ
19 March

.htaccess 301リダイレクト

さくらサーバーでは Options +FollowSymLinks を入れるとエラーになる
http://the-journey-of-life.info/2012/04/sakura-htaccess-301r/


wwwなし、index.htmlなしで統一したいとき


RewriteEngine on
RewriteCond %{HTTP_HOST} ^www¥.ドメイン名¥.com
RewriteRule (.*) http://ドメイン名.com/$1 [R=301,L]

RewriteEngine on
RewriteCond %{THE_REQUEST} ^.*/index.html
RewriteRule ^(.*)index.html$ http://ドメイン名.com/$1 [R=301,L]




PR