我在 centos 6 中安装了 apache 2.2。当 apache 文件夹位于其默认位置时,一切正常/var/www/html
。然后我在我的用户主文件夹中配置了一个虚拟主机。之后,Forbidden You don't have permission error
当我尝试进出localhost
浏览127.0.0.1
器时,apache 开始显示。
这是我在 httpd.conf 中使用的代码
<VirtualHost *:80>
DocumentRoot "/home/anjan/workspace/mfs"
ServerName anjan-centOS
<Directory "/home/anjan/workspace/mfs">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>
正如一些文章中提到的那样,我也禁用SElinux
了,但徒劳无功。如果有人可以帮助我,将不胜感激。