我正在尝试强制下载一个文件夹的所有文件。
页面上的链接如下所示
<a href="http://example.com/uploads/documents/file.pdf">Click to download</a>
而且我的.htaccess中有这个片段
<filesMatch ".*uploads/documents.*">
ForceType application/octet-stream
Header set Content-Disposition attachment
</filesMatch>
我已经知道标签内的2行是有效的,因为当我将.htaccess直接放在我想用以下代码强制下载的文件夹中时,它可以正常工作:
<Files *.*>
ForceType application/octet-stream
Header set Content-Disposition attachment
</Files>
似乎有些东西我对filesMatch标签不了解。
弑天下
慕神8447489
缥缈止盈