MACOX中apache配置
配置方式:
在Finder中创建一个”Sites”的文件夹
修改配置文件(/etc/apache2/httpd.conf)中的”两个路径”DocumentRoot,指向刚刚创建的文件夹
修改配置文件中带有php的行,去掉行首的*
修改配置文件 找到Options FollowSymLinks Multiviews,改为Options Indexes FollowSymLinks Multiviews
拷贝php.ini文件 sudo cp php.ini.default php.ini
常用命令
启动 apachectl -k start
关闭 apachectl -k stop
重启 apachectl -k restart
关闭开机启动
sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist
设置开机启动
sudo launchctl load -w /System/Library/LaunchDaemons/org.apache.httpd.plist