|
蓝森林 http://www.lslnet.com 2006年5月28日 19:08
被一个看似简单的问题难住了
我原来的网站首页是index.php,现需要临时调整成index.htm。
我将Apache配置文件httpd.conf中
[color=Blue]DirectoryIndex index.php index.htm[/color]
改为
[color=Blue]DirectoryIndex index.htm index.php[/color]
并且重启httpd服务后,结果打开网站时的默认网页仍是index.php
望高人指点迷津! |
找到答案了;)
要在[color=Red]网站目录配置[/color]中加上下面的一行才行。
<Directory "/data/web">
...
[color=Blue]DirectoryIndex index.htm index.php[/color]
...
</Directory> |
| |