Mac下Apache的配置和使用

Apache基本指令

查看当前版本

httpd -v

配置文件与网站根目录默认所在位置

/etc/apache2/httpd.conf //配置文件
/Library/WebServer/Documents //网站根目录

服务基本操作

sudo apachectl start // 开启Apache
sudo apachectl stop // 关闭Apache
sudo apachectl restart // 重启Apache

Apache的访问

修改 /Library/WebServer/Documents 目录的权限,放入外网需要访问的文件,即可通过IP访问。
如:http://127.0.0.1/weex/index.js

你可能感兴趣的:(Mac下Apache的配置和使用)