apache 不自己寻找index.html文件?

apache 不自己寻找index.html文件?

我的系统为ubuntu amd64,用apt-get 安装的apache,/etc/apache/httpd.conf文件内容如下:

[Copy to clipboard] [ - ]
CODE:
DocumentRoot "/var/www/"
<Directory "/var/www/">
    Options FollowSymLinks
    AllowOverride None
    DirectoryIndex "index.html index.cgi"
    Order allow,deny
    Allow from all
</Directory>

起动后访问"/"提示403错误
/var/www文件夹权限没有问题,为apache设定的用户,同时apache是root用户起的
访问 /index.html就能显示

why?
DirectoryIndex "index.html" "index.cgi"
DirectoryIndex index.html index.cgi

你用“”就表示一个文件名称了。

最好的,不用"


QUOTE:
原帖由 HonestQiao 于 2007-3-15 17:26 发表
DirectoryIndex "index.html" "index.cgi"
DirectoryIndex index.html index.cgi

你用“”就表示一个文件名称了。

最好的,不用"

hehe