Apache的启动命令
sudo apachectl start
浏览器输入:http://localhost,提示“It works”;
Apache服务器默认的web根目录在:
/Library/WebServer/Documents
Apache的配置文件在:
/etc/apache2
停止 Apache:
sudo apachectl stop
重启 Apache:
sudo apachectl restart
开启PHP模块
1.打开Apache配置文件:
sudo vim /etc/apache2/httpd.conf
2.去掉注释:
#LoadModule php5_module libexec/apache2/libphp5.so
3.重启Apache