Centos7安装apache

安装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 下

    AllowOverride none
    #Require all denied   //备注或去掉该段代码  拒绝所有请求


DocumentRoot "/home/wamp3/www"

    Options +Indexes +FollowSymLinks
    AllowOverride all
    #Require local   //关键 本地请求要去掉

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

你可能感兴趣的:(Centos7安装apache)