安装互联网yum源:
http://ftp.sjtu.edu.cn/fedora/epel/ 逐级找到以下字样,然后安装。

http://ftp.sjtu.edu.cn/fedora/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm

可以wget到然后本地rpm -ivh安装,也可以直接
rpm -ivh http://ftp.sjtu.edu.cn/fedora/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm

然后:
yum clean all
yum makecache

安装服务:

sudo systemctl stop firewalld.service

sudo systemctl start httpd.service

systemctl stop firewalld.service
http://www.linuxidc.com/Linux/2015-05/117473.htm

进入配置界面vi httpd.conf
把里面的 AllowOverride None 全部修改为 AllowOverride All
顺便在 DirectoryIndex index.html 后面加上 index.htm index.php index.shtml
这个是配置默认首页的
:wq 保存退出 service httpd restart 重启 apache 服务,再访问一下。果然可以访问了。