我正在尝试通过文件夹中的链接获取文件。 (http://myhost/files/file.jpg
)
文件夹“文件”是我使用命令mklink /d "D:\myhost\www\files" "Z:\users\netfiles"
创建的Windows符号链接。
磁盘“ Z”是网络驱动器。所有文件都保存在那里。如何从Windows symlink文件夹中获取文件?我收到404错误。但是,如果我要去http://myhost/files/
,则会收到403禁止错误。对于其他普通文件夹,一切正常。
网络服务器
Apache服务在Administrator下运行。
httpd.conf
<Directory />
Options +FollowSymLinks -Indexes
AllowOverride All
Require all granted
</Directory>