CentOS7安装配置Apache

Apache安装

  1. yum install httpd

    CentOS7安装配置Apache

  2. 安装httpd会自动安装一下依赖包:

    这是要下载的依赖包

    CentOS7安装配置Apache

  3. 选择y及安装已下载好的安装包。安装大概需要30秒左右。

    CentOS7安装配置Apache

  4. 配置

    进入配置界面vi httpd.conf

    把里面的 AllowOverride None 全部修改为 AllowOverride All

    顺便在 DirectoryIndex index.html 后面加上 index.htm index.php index.shtml

    这个是配置默认首页的

    :wq 保存退出 service httpd restart 重启 apache 服务,再访问一下。果然可以访问了。

    CentOS7安装配置Apache

  5. 重启服务器

    CentOS7安装配置Apache

  6. systemctl start httpd.service #启动apache

    systemctl stop httpd.service #停止apache

    systemctl restart httpd.service #重启apache

    systemctl enable httpd.service #设置apache开机启动

  7. 7

    测试。在浏览器中输入相应网址。

    CentOS7安装配置Apache

猜你喜欢

转载自blog.csdn.net/Hero_QHZ/article/details/86418330