我在 /Users/myusername/Sites 下的 Mac 上运行 localhost 服务器
我的站点文件夹中有一个指向外部保管箱目录的符号链接。如果我尝试运行 opendir 并在作为符号链接的目录中加载图像,我会得到
Warning: opendir(dir/symlinkDir/) [function.opendir]: failed to open dir: Permission denied
symlinkDir 是指向包含图像的目录的符号链接。这很好用,因为 symlinkDir 不是软链接,而是实际的目录。
我尝试更改目录 755、777、+x 的权限。我也尝试将 /etc/apache2/users/myusername.conf 更改为
<Directory "/Users/myusername/Sites/">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>