我正在关注this链接以在我的本地计算机上设置apache2 Web服务器。
我已经成功安装了所有内容并获得了语法OK响应,但当我尝试点击" http://localhost/~[your短用户名"时,我收到403禁止错误。
我将[您的短用户名]保留为" Home"作为其中的一部分,创建了新文件:/etc/apache2/users/Home.conf并添加了以下内容:
<Directory "/Users/Home/Sites/">
AddLanguage en .en
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Require host localhost
</Directory>
&#13;
一切正常,我得到了#34;它有效!&#34;在击中&#34; http://localhost/&#34;但是在点击&#34; http://localhost/~Home&#34;时得到禁止错误(403)。该错误表示&#34;禁止访问:您无权访问此服务器上的/ ~Home。&#34;
答案 0 :(得分:0)
我跟着这个link,它现在正在运作。
/etc/apache2/users/Home.conf文件中的一处更改为:
<Directory "/Users/Home/Sites/">
AddLanguage en .en
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Require all granted
</Directory>