• 締切済み

/でアクセスされた際にindex.htmlを付加

http://example.com/のようにスラッシュで終わるアドレスにアクセスされた際に http://example.com/index.htmlのようにindex.htmlにリダイレクトさせる場合 htaccessをどのように書けばいいのでしょうか? 現在の設定は以下のようになっています RewriteEngine on RewriteCond %{THE_REQUEST} ^(.*)/ RewriteRule ^(.*)$ http://example.com/index.html [R=301]

みんなの回答

noname#130824
noname#130824
回答No.3

RewriteEngine on RewriteRule ^$ http://example.com/index.html [R=301]

参考URL:
http://webings.net/htaccess/
回答No.2

こんばんは。 もしくは、 RewriteEngine on RewriteRule ^$ /index.html [R=301]

  • mindatg
  • ベストアンサー率48% (110/227)
回答No.1

1行だけです。 DirectoryIndex index.html