本文共 456 字,大约阅读时间需要 1 分钟。
安装互联网yum源:
逐级找到以下字样,然后安装。可以wget到然后本地rpm -ivh安装,也可以直接
rpm -ivh然后:
yum clean all yum makecache安装服务:
sudo systemctl stop firewalld.service
sudo systemctl start httpd.service
systemctl stop firewalld.service
进入配置界面vi httpd.conf
把里面的 AllowOverride None 全部修改为 AllowOverride All顺便在 DirectoryIndex index.html 后面加上 index.htm index.php index.shtml这个是配置默认首页的:wq 保存退出 service httpd restart 重启 apache 服务,再访问一下。果然可以访问了。转载于:https://blog.51cto.com/waversoft/2048177