我只是使用标准的apache配置文件,它提到它遵循符号链接,但是当我点击URL http://localhost/test
时,它会下载符号链接文件而不是跟随它。我需要更改什么配置才能让apache跟随符号链接而不是下载?
这是目录中的ls:
$ ls -al
total 10
drwx------+ 1 SYSTEM SYSTEM 0 Oct 20 10:55 .
drwx------+ 1 SYSTEM SYSTEM 0 Aug 26 12:27 ..
-rw-r--r--+ 1 me None 47 Oct 20 10:14 index.html
lrwxrwxrwx 1 me None 29 Oct 19 17:10 test -> /home/me/projects/test
这是在我的apache配置文件中:
<Directory "D:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
答案 0 :(得分:0)
我弄明白了这个问题。我使用的符号链接是使用cygwin制作的,它交叉驱动器/卷。我发现Windows中不允许这样做,所以我不得不将文件移动到与apache相同的驱动器上,链接现在正在工作。