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