You don't have permission to access /Eric/ on this server.

You don't have permission to access /Eric/ on this server.

我用的linux,httpd.conf为以下设置.
---------------
DirectoryIndex index.html index.htm index.shtml index.php index.php4 index.php3 index.cgi

Alias /Eric/ "/home/Eric/www/"
<Directory "/home/Eric/www">
    Options Indexes Multiviews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>
---------------
目录/home/Eric/www为drwxr-xr-x,
/home/Eric/www里面的文件为-rwxr-xr-x.
里面有个index.html文件.怎么会出现这样的错误呢?
我用Eric登入也是一样.
      
各位大虾请救救啊!thx      
在你的apache配置文件中应该有类似这个的东西:
# Who runs the server?
User apache
Group apache

运行:
#chown -R apache /home/Eric/www
#chgrp -R apache /home/Eric/www      
你的方法我试过还是不行.
改为以下
User nobody
Group nobody
再将文件和文件夹设为nobody,还不行.
而且index.html是小写的.      
目录/home/Eric/www 755
/home/Eric/www里面的文件为 755      
而且我用Eric登陆也出现这样的问题.      
还有点怪怪的,我用httpd stop,外面仍然可以浏览到的web服务器里面的东西,
而且我在本机lynx用浏览/home/Eric/www/index.html就没有出现问题,所以应该不是权限问题吧!