[Apache]index.phpやindex.cgiをディレクトリ"/"で呼び出す方法
DirectoryIndexを設定する
これをやるには、Apacheの設定ファイルhttpd.confのDirectoryIndexの項目を書き換えます。DirectoryIndex index.html index.html.var
↓DirectoryIndex index.html index.html.var index.php index.cgi
こうすると、http://example.com/index.phpのようなURLを、
http://example.com/foo/index.cgi
http://example.com/のように短縮することができます。
http://example.com/foo/
なお、index.html, index.php, index.cgiなどのファイルが共存する場合は、前に書いたファイル名が優先されます。
つまりこの場合、
- index.htmlがあればそれが使われる
- index.htmlがなければindex.phpが使われる。
- index.phpもなければindex.cgiが使われる。
カテゴリ:
Apache