美文网首页我爱编程
Centos7安装apache

Centos7安装apache

作者: liurongming | 来源:发表于2017-04-03 18:27 被阅读0次

安装apache

# 安装apache
yum -y install httpd
# 查看安装位置
rpm -qa | grep httpd
# 开机启动服务
# 相当于以前的chkconfig iptables on
systemctl enable httpd.service
# 开启服务
systemctl start httpd.service
# 重启服务
systemctl restart httpd.service
# 查看状态
systemctl status httpd.service

配置apache

局域网中无法访问到我的apache服务器,提示 Forbidden You don’t have permission to access / on this server.

解决办法 :

httpd.conf 下
<Directory />
    AllowOverride none
    #Require all denied   //备注或去掉该段代码  拒绝所有请求
</Directory>

DocumentRoot "/home/wamp3/www"
<Directory "/home/wamp3/www/">
    Options +Indexes +FollowSymLinks
    AllowOverride all
    #Require local   //关键 本地请求要去掉
</Directory>

其实就是 去掉 Require all denied 和 Require local

相关文章

网友评论

    本文标题:Centos7安装apache

    本文链接:https://www.haomeiwen.com/subject/bvjoottx.html