我想强制下载PDF,而不是在浏览器中加载。
我在.htaccess中使用以下代码:
<FilesMatch "\.(?i:pdf)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
除了Safari之外,它的效果很好。
有什么想法吗?
答案 0 :(得分:12)
在.htaccess文件中尝试此操作
SetEnvIf Request_URI "\.pdf$" requested_pdf=pdf
Header add Content-Disposition "attachment" env=requested_pdf
即使在我的测试中使用safari,它似乎也能正常工作