欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Get Apache, PHP working on macOS Sierra

程序员文章站 2024-03-23 20:45:22
...

原文:
https://coolestguidesontheplanet.com/get-apache-mysql-php-and-phpmyadmin-working-on-macos-sierra/

原来macOS上自带了apache啊,我今天才知道。

➜  ~/GitProjects/repos_js  httpd -v                                                                                               [16:00:21]
Server version: Apache/2.4.25 (Unix)
Server built:   Feb  6 2017 19:34:08
➜  ~/GitProjects/repos_js  tcp|grep httpd                                                                                         [16:00:51]
httpd     94762    root    4u  IPv6 0x4388e3befb1b0cd9      0t0  TCP *:80 (LISTEN)
httpd     94768    _www    4u  IPv6 0x4388e3befb1b0cd9      0t0  TCP *:80 (LISTEN)
httpd     94771    _www    4u  IPv6 0x4388e3befb1b0cd9      0t0  TCP *:80 (LISTEN)
httpd     94781    _www    4u  IPv6 0x4388e3befb1b0cd9      0t0  TCP *:80 (LISTEN)
httpd     95236    _www    4u  IPv6 0x4388e3befb1b0cd9      0t0  TCP *:80 (LISTEN)
httpd     95355    _www    4u  IPv6 0x4388e3befb1b0cd9      0t0  TCP *:80 (LISTEN)

使用

sudo apachectl start/stop/restart

即可。

Web目录

系统级Web目录

/Library/WebServer/Documents。所有用户都可以访问。
直接在浏览器里输入localhost即可。
Get Apache, PHP working on macOS Sierra

  /Library/WebServer/Documents  ll                                                                                               [16:02:41]
total 72
drwxr-xr-x  6 root  wheel   204B  2 26 15:22 ./
-rw-r--r--  1 root  wheel   3.6K  8  9  2016 PoweredByMacOSX.gif
-rw-r--r--  1 root  wheel    31K  8  9  2016 PoweredByMacOSXLarge.gif
drwxr-xr-x  5 root  wheel   170B  8  9  2016 ../
-rw-r--r--  1 root  wheel    45B  6 12  2007 index.html.en
-rw-r--r--  1 root  wheel    45B  6 12  2007 index.html.en~orig
  /Library/WebServer/Documents  cat index.html.en                                                                                [16:02:46]
<html><body><h1>It works!</h1></body></html>

用户级Web目录

~/Sites
在浏览器中输入http://localhost/~caiqiqi/即可。
Get Apache, PHP working on macOS Sierra

相关标签: macos php apache