http://www.saitjr.com/php/php-mac-yosemite-locahost-path.html
在Mac上搭建了PHP服务器以后,默认的路径为/Library/WebServer/Documents下面,但这让人很不爽,我想修改到自己定义的路径下。经过好一番折腾,终于成功了。
因为网上有很多搭建环境的教程,所以本文就不在赘述。
环境信息
Mac OS X 10.10.1
Apache 2.4.2
PHP 5.6
正文
如果出现以下情况,请尝试以下方法:
1.?尝试修改了路径出现了403 Forbidden You don’t have permission to access / on this server;
2. 还未修改路径,现在需要修改;
因为Mac 10.10与Apache 2.4的配置信息与之前版本不同,很多网站上都没有,所以不容易找到解决办法。
具体步骤为(我mac的用户名为tangjr,以下均以tangjr为例):
1. 打开文件/private/etc/apache2/httpd.conf
找到
LoadModule userdir_module libexec/apache2/mod_userdir.so
并将#去掉
2. 在用户名下创建文件夹Sites
3. 修改/private/etc/apache2/httpd.conf文件中的DocumentRoot为:
DocumentRoot "/Users/tangjr/Sites"
<Directory "/Users/tangjr/Sites">
4. 创建文件/private/etc/apache2/users/tangjr.conf
并在文件中输入以下代码
<Directory "/Users/tangjr/Sites/">
Options Indexes MultiViews
AllowOverride All
Require all granted # OSX 10.10 / Apache 2.4
</Directory>
5. 找到/private/etc/apache2/httpd.conf文件中
Options FollowSymLinks Multiviews
修改为
Options FollowSymLinks Multiviews Indexes
6. 重启apache服务器
sudo apachectl restart