3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

.htaccessによるリダイレクト | www、index.htmlありなし

Posted at

WEBサイトの運用でたまに使います。
.htaccessに記載します。

1.wwwありに統一する場合

RewriteEngine on
RewriteCond %{HTTP_HOST} ^seotemplate.biz
RewriteRule ^(.*)$ http://www.hoge.com/$1 [R=301,L]

2.index.htmlなしに統一する場合

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{THE_REQUEST} ^./index.html
RewriteRule ^(.
)index.html$ http://www.example.com/$1 [R=301,L]

<注意事項>
さくらのレンタルサーバでは
Options +FollowSymLinks
をいれると500エラーが出ます。
他のサーバーでは未確認。

→ さくらサーバをお使いの方で index.htmlなしに統一したい場合は、以下のコードを記載して下さい。

RewriteEngine on
RewriteCond %{THE_REQUEST} ^./index.html
RewriteRule ^(.
)index.html$ http://www.example.com/$1 [R=301,L]

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?