Tips記事
» 2001年10月31日 00時00分 UPDATE

index.cgiやindex.phpなどをアドレス指定で呼び出したい

[木田佳克,ITmedia]

 Webブラウザから「http://www.xxxxxx.com/」などと指定をして読み出されるHTMLファイルは,通常index.htmlやindex.htmだろう。特に「http://www.xxxxxx.com/index.html」と指定せずに済んでいるのは,httpd.conf内で次のように設定しているからだ。

<IfModule mod_dir.c>
DirectoryIndex index.html
</IfModule>

 Apacheの標準設定ではindex.htmlのみであるが,次のように追加すればよい。アクセス時には,index.htmlから順番に該当するファイルが無いかを走査する。

<IfModule mod_dir.c>
DirectoryIndex index.html index.htm index.shtml index.cgi index.php
</IfModule>

Copyright © ITmedia, Inc. All Rights Reserved.

注目のテーマ