我正在尝试强制下载一个文件夹的所有文件。
页面上的链接如下所示
<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 标签,我似乎有些不理解。