美文网首页
mac 启动服务(Apache)

mac 启动服务(Apache)

作者: 某个胖子 | 来源:发表于2016-01-25 18:03 被阅读238次

终端命令启动服务

  • sudo apachectl -k start : 启动
  • sudo apachectl -k restart : 重启
    启动服务后,打开浏览器,输入localhost ,回车。浏览器显示 it works! 表示 服务已经启动。
    首页默认为 /Library/WebServer/Documents 路径下的 index文件。


    路径.png

自定义路径

  • 打开终端输入
  • cd /etc/apache2 进入apache配置目录
  • sudo vim httpd.conf : 使用vim打开Apache 配置文件
  • 在文件中找到 DocumentRoot : 文件默认地址,修改对应路径为自定义路径。

默认情况下,Apache对php的支持是关闭的。
详细

相关文章

网友评论

      本文标题:mac 启动服务(Apache)

      本文链接:https://www.haomeiwen.com/subject/jcqdkttx.html