|
|
我在用APACHE2.0配置WEB服务的时候,用户的个人目录总是配置不成功,访问时的提示如下:
Forbidden
You don't have permission to access /~tiredboy on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
--------------------------------------------------------------------------------
Apache/2.0.52 (Unix) PHP/4.4.0 Server at 10.14.4.250 Port 80
我的APACHE关于个人目录的配置如下:
<Directory /home/*/public_html>
AllowOverride FileInfo AuthConfig Limit Indexes
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
Order allow,deny
Allow from all
</Directory>
上面的这段应该没什么问题吧?后来我以为是用户目录权限的问题,就chmod -R 705 public_html发现不行,索性改成777还是不行,大家指点下小弟吧,谢谢^_^ |
|