janneyabc 发表于 2018-11-21 06:29:31

Apache站点默认首页设置

  Apache的默认首页为index.html,当我们需要改首页文件或者增加首页文件时,可以在httpd.conf文件中增加配置语句。
  httpd.conf首页文件默认配置语句如下:
  
      DirectoryIndex index.html
  
  

  如果我们需要增加首页文件xxx.htm时,可以在DirectoryIndex index.html下增加加一行语句DirectoryIndex xxx.htm,优先级从上到下。
  例如我需要增加index.htm、defaul.htm、index.php文件,配置语句需改为:
  

    DirectoryIndex index.html
   DirectoryIndex index.htm
   DirectoryIndex default.htm
   DirectoryIndex index.php

  

  改好后保存,需重启Apache后才能生效。





页: [1]
查看完整版本: Apache站点默认首页设置