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
即可。
➜ /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/
即可。
上一篇: shell 编程 while循环
推荐阅读
-
Get Apache, PHP working on macOS Sierra
-
macOS Sierra安装Apache2.4+PHP7.0+MySQL5.7.16
-
macOS Sierra安装Apache2.4+PHP7.0+MySQL5.7.16
-
PHP开发中,MacOs 10.13自带apache从php7切换到php5讲解
-
MacOS Lion安装Apache+MySQL+PHP的一些坑
-
macos+apache+php+phpmyadmin 的整合过程梳理_PHP教程
-
macos+apache+php+phpmyadmin 的整合过程梳理
-
PHP开发中,MacOs 10.13自带apache从php7切换到php5讲解
-
macos+apache+php+phpmyadmin 的整合过程梳理
-
macos+apache+php+phpmyadmin 的整合过程梳理_PHP教程