httpd.conf文件:
<IfModule mod_dir.c>
    DirectoryIndex index.html
</IfModule>在你的文件夹中写个文件index.html,它就会默认显示

解决方案 »

  1.   

    当然,你也可以改成
    <IfModule mod_dir.c>
        DirectoryIndex index.html.ca
    </IfModule>
    不过记得重启一下apache服务哦
      

  2.   

    就是将httpd.conf文件:
    <IfModule mod_dir.c>
        DirectoryIndex index.php
    </IfModule>改成这样可以吗?
      

  3.   

    可以的,你应该自己试一下
    在看到你这个问题的时候,我是打开httpd.conf,然后搜索index查出来的
      

  4.   

    呵呵,学习PHP两天了,幸亏以前学过点JAVA这才感觉好学多了,但是觉得PHP的配置有些头晕,不过还好在这里能够解决问题,提前祝大家    五四快乐~!
      

  5.   

    <VirtualHost IP> 
    RedirectMatch       ^/$   index.php
     </VirtualHost>
      

  6.   

    httpd.conf文件:
    <IfModule mod_dir.c>
    DirectoryIndex index.php
    </IfModule>