共计 979 个字符,预计需要花费 3 分钟才能阅读完成。
Apache 的默认首页为 index.html, 当我们需要改首页文件或者增加首页文件时,可以在 httpd.conf 文件中增加配置语句。
httpd.conf 首页文件默认配置语句如下:
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
如果我们需要增加首页文件 xxx.htm 时,可以在 DirectoryIndex index.html 下增加加一行语句 DirectoryIndex xxx.htm, 优先级从上到下。
例如我需要增加 index.htm、defaul.htm、index.php 文件,配置语句需改为:
<IfModule dir_module>
DirectoryIndex index.html
DirectoryIndex index.htm
DirectoryIndex default.htm
DirectoryIndex index.php
</IfModule>
改好后保存,需重启 Apache 后才能生效。
Ubuntu Server 14.04 安装 Web 服务器 (Linux+Apache+MySQL+PHP) http://www.linuxidc.com/Linux/2015-06/119061.htm
Linux 下安装配置 PHP 环境 (Apache2) http://www.linuxidc.com/Linux/2015-05/118062.htm
Ubuntu 13.04 安装 LAMP\Vsftpd\Webmin\phpMyAdmin 服务及设置 http://www.linuxidc.com/Linux/2013-06/86250.htm
CentOS 5.9 下编译安装 LAMP(Apache 2.2.44+MySQL 5.6.10+PHP 5.4.12) http://www.linuxidc.com/Linux/2013-03/80333p3.htm
RedHat 5.4 下 Web 服务器架构之源码构建 LAMP 环境及应用 PHPWind http://www.linuxidc.com/Linux/2012-10/72484p2.htm
Apache 的详细介绍 :请点这里
Apache 的下载地址 :请点这里
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2015-10/124284.htm