apache 设置默认页面,apache默认页面


今天突然 发现了一个  apache 设置默认页面的功能

例如当我们 在地址栏输入 domain.com/test/ 时  默认他会找到 domain.com/test/index.php  或者 index.html

诸如此类的 默认文件 那么在哪里设置默认查找哪个文件呢

apache的 httpd.conf 中

<IfModule dir_module>
    DirectoryIndex index.php index.php3 index.html index.htm

</IfModule>

这一段中 加入你要设置的默认页面 例如 index4.php 或者 server.php之类的

相关内容

    暂无相关文章