Macbook Pro上有哪些PHP集成环境,如何像Windows那样进入www目录呢?
PHPz2017-04-10 17:13:41
先查看一下Apache下面的默认DocumentRoot:DocumentRoot "/Library/WebServer/Documents"
更改目录步骤
1:进入/Private/etc/apache2/users,可以看到里面有个Guest.conf
<Directory "/Users/Guest/Sites/">
Options Indexes MultiViews
Require all granted
</Directory>
2:sudo vim username.conf
<Directory "/Users/username/www/">
AllowOverride All
Options Indexes MultiViews FollowSymLinks
Require all granted
</Directory>
这个username是用户目录