我有许多文件存储在我网站的公共可访问部分之外的文件夹中。
例如,文件'abcd.jpg'
在'/home/private_files/'
中存储(就服务器而言),网站位于'/home/public_html/website.com/'
当我提供查看文件的链接时,我使用
<a href="/home/private_files/abcd.jpg">Download</a>
然而这不起作用。
有什么建议吗?
答案 0 :(得分:0)
如果您使用Apache作为服务器,可以将其设置为httpd.conf中的别名...
Alias /images/ "/home/private_files/"
<Directory "/home/private_files/">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</IfModule>
你可以使用这个
<a href="/images/abcd.jpg">Download</a>
答案 1 :(得分:0)