命令
sudo apachectl -v //查看apache 版本
sudo apachectl -k start //启动apache
sudo apachectl -k stop //停止apache
sudo apachectl -k restart //重启apache
配置
apache 的配置在
/etc/apache2/httpd.conf
默认情况下httpd.conf 为锁定状态,无法编辑
使用vim编辑器进行编辑
终端定位到 /etc/apache2 目录
输入命令
sudo vim httpd.conf
用vim 打开 httpd.conf
键盘i进入插入模式,
键盘ecs退出插入模式
非插入模式下输入:wq 回车进行保存
这个路径是网站所在路径
这个Listen 是监听到地址
如果自定义网站所在路径
很可能会遇到
Apache You don't have permission to access / on this server.
那么还需要修改
User 后面_www 改为电脑到用户名