系统版本macOS 10.11.2
两种方法
第一种方法:
系统自带Apache和php
查看php版本 php -v
查看Apache版本 httpd -v
启动Apache sudo apachectl start
关闭Apache sudo apachectl stop
重启Apache sudo apachectl restart
浏览器访问http://127.0.0.1 正常状态页面显示
It works!
默认配置文件 /etc/apache2/httpd.conf
默认服务器根目录 /Library/WebServer/Documents
新建index2.html,随便输入几个字,保存到 /Library/WebServer/Documents
浏览器访问http://127.0.0.1/index2.html,显示正常
在httpd.conf文件中搜索"php" 删除句首的"#"打开注释
把index2.html后缀改为php,编辑加入代码<?php print "hello!!!!!!!!!!!!!!"; ?>
浏览器访问http://127.0.0.1/index2.php,正常状态页面显示
hello!!!!!!!!!!!!!!
第二种方法:
下载MAMP,安装