咱們知道apache的配置文件httpd.conf能夠配置網站目錄的默認主頁。配置文件該部分定義以下:php
#DirectoryIndex: sets the file that Apache will serve if a directory is requested.html
<IfModule dir_module>
DirectoryIndex index.php index.php3 index.html index.htm
</IfModule>apache
同理htaccess中的DirectoryIndex 一樣能夠配置網站目錄的默認主頁,例若有的服務器默認index.html爲主頁,而經過DirectoryIndex 則能夠設定任意命名的文件爲首頁。服務器
DirectoryIndex psz.php index.php index.php3 index.html index.htm網站
服務器的工做流程:首先在目錄中找psz.php,有的話就默認爲主頁,沒有的話就繼續找下一個,優先順序爲從左往右。htm