当我链接到foo.pdf时 - > pdf将显示在选项卡中。其他网站给我下载一个小弹出窗口用于保存或打开 - 而不是在选项卡中。如何强制下载这些文件?
有人有想法吗?
由于
答案 0 :(得分:1)
有效。在apache2中更改标头:
1)启用模块
a2enmod headers
2)插入apache2.conf
<FilesMatch "\.pdf$">
Header set Content-Disposition attachment
</FilesMatch>
3)重启apache