本文介绍了的.htaccess力PDF下载在Safari的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想迫使PDF文件下载,而不是装载在浏览器中。
I want to force a PDF to download, rather than load in-browser.
我用我的.htaccess以下code:
I'm using the following code in my .htaccess:
<FilesMatch "\.(?i:pdf)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
它的伟大工程,除了在Safari浏览器。
It works great, except in Safari.
任何想法?
推荐答案
在你的.htaccess文件试试这个
Try this in your .htaccess file
SetEnvIf Request_URI "\.pdf$" requested_pdf=pdf
Header add Content-Disposition "attachment" env=requested_pdf
这似乎是做工精细,即使在野生动物园在这里我的测试
It appears to work fine even with safari on my tests here
这篇关于的.htaccess力PDF下载在Safari的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!