在centos中,安装完apache和php后,默认情况下是index.php优先级最高.
如果想要更改为index.html优先的话,需要对文件进行如下编辑:
编辑httpd.conf文件,找到DirectoryIndex这行,加上index.php 如下:
DirectoryIndex index.html index.htm index.php
保存编辑的内容(在vi下,按下esc后输入 :wq 回车, 即可保存编辑的文本内容并退出)
再修改一下php相关配置文件php.conf:
/etc/httpd/conf.d/php.conf 文件中的 DirectoryIndex index.html index.htm index.php
这样优先级的顺序为 index.html > index.htm > index.php
最后 重启Apache : service httpd restart
(如果遇到bash: service: command not found,说明命令路径有问题, 在命令前面加入 /sbin/ 即可)
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了centos中 ,设置indexhtml 和 indexphp的优先级,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。