apache 设置网站默认首页文档的两种方法:
一、修改 apache 配置文件
找到 apache 配置文件:httpd.conf,找到 DirectoryIndex 参数,将你想要的默认首页文档名称加入其中即可。例如:DirectoryIndex index.html index.php default.html,这样 apache 会自动按顺序查找网站根目录中的相应文件,第一个匹配值就会作为默认首页文档被显示出来。
二、通过 vhost 配置
示例代码如下:
ServerAdmin webmaster@02405.com DocumentRoot "D:wampwww" ServerName 02405.com ServerAlias 02405.com DirectoryIndex wap.php ErrorLog "logs/dummy-host.localhost-error.log" CustomLog "logs/dummy-host.localhost-access.log" common
上述代码中通过 DirectoryIndex 将 02405.com 这个网站的默认首页文档单独配置成了 wap.php
声明:本文为原创文章,版权归主机之家测评所有,欢迎分享本文,转载请保留出处!