咱们知道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