2013-09-14 14:01:28
来 源
中存储网
PHP
该篇讲述设置Apache服务器首页运行index.PHPindex.html的顺序详细过程,希望对于初学Apache服务器相关的朋友有帮助,更多Apache安装、配置、报错处理等资源请本站内搜索。

问:如何让Apache能自动运行index.php?

答:编辑httpd.conf文件,找到DirectoryIndex在后面加一个index.php。

例如,我把DirectoryIndex这行改为:DirectoryIndex index.html index.htm index.php index.html.var

保存编辑的内容,重新启动Apache就可以实现了。

<Directory /xxx>

DirectoryIndex index.html index.htm index.php index.php3

</Directory>

如果上述设置后仍无法按顺序运行首页,那么还得修改一下php相关配置文件php.conf

/etc/httpd/conf.d/php.conf文件中的

DirectoryIndex index.php

上面是甚至index.php 优先,如果把DirectoryIndex index.php去掉,则index.html,应该也可以改成DirectoryIndex index.html 或者DirectoryIndex  index.html index.php

根据实际最好先做测试

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。