启动 Apache

  • 查看 Apache 版本
    打开终端,输入 httpd -v 可以查看 Apache 版本信息。

启动 Apache
在终端输入 sudo apachectl start 即可启动 Apache。
启动后,在浏览器中输入 http://127.0.0.1http://localhost 如果看到 It Works!

  • 站点的根目录为系统级根目录 /Library/WebServer/Documents。启动后,你可以通过编辑 /etc/apache2/httpd.conf 文件来修改 Apache 配置。
  • 停止 Apache:sudo apachectl stop
  • 重启 Apache:sudo apachectl restart