403配置apache / httpd服务器时禁止访问

时间:2015-09-03 06:18:08

标签: apache web webserver server

我在我的rhel6中使用"yum install httpd"安装了httpd 在使用"service httpd start"启动服务器之后,我尝试使用wget http://localhost:8080(我在httpd.conf中配置)访问测试页面,我得到 403 Access forbidden 。任何人都能帮我解决这个错误的原因吗?

1 个答案:

答案 0 :(得分:0)

检查httpd.conf中的目录权限:

<Directory "/var/www/html">
    Options +Indexes FollowSymLinks +ExecCGI
    AllowOverride AuthConfig FileInfo
            Order allow,deny
    Allow from all
</Directory>

其中&#34; / var / www / html&#34;是你的文档根目录。