apache虚机配置问题

apache虚机配置问题

linux+apache+php
修改完http.conf后,出现以下情况:
以www.xxx.com方式进入,出现apache test页面
www.xxx.com/index.php方式进入,出现正常页面
请高手指点      
那应该是你的默认索引文件没有设置好,好象apach默认的是什么index.html,index.shtml等文件,你在apach的配置文件中加上你的index.php就应该ok了.      
我在httpd.conf中增加了以下
<IfModule mod_dir.c>
    DirectoryIndex index.html index.htm index.php
</IfModule>      
[QUOTE]最初由 y_kaise_cl 发布
[B]我在httpd.conf中增加了以下
<IfModule mod_dir.c>
    DirectoryIndex index.html index.htm index.php
</IfModule> [/B][/QUOTE]


把index.php 放到前面来。

    DirectoryIndex index.php index.htm index.html      
为什么会出现apache test页。      
吧htdocs目录中的index.htm index.html文件删掉,有一个index.php就够了      
索引文件里只写一个index.php 试试!