当我尝试访问我在htdocs目录中创建的符号链接文件夹中的文件和目录时,XAMPP会出现“禁止访问”错误。如何让XAMPP停止返回此错误,而是开始返回我在符号链接目录中搜索的文件?
请注意以下内容,我根据类似问题尝试过:
localhost
localhost
htdocs
的文件,因为我添加了一个可读的index.html
文件755
个perms,我尝试访问的文件是世界可读的 /Applications/XAMPP/xamppfiles/etc/httpd.conf
有:
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs"
<Directory "/Applications/XAMPP/xamppfiles/htdocs">
Options Indexes FollowSymLinks ExecCGI Includes
AllowOverride All
Require all granted
</Directory>
我在Mac OS X 10.9上运行XAMPP 1.8.3(最新版本,今天下载)
谢谢!