.htaccess 在 Safari 中强制下载 PDF
我想强制下载 PDF,而不是在浏览器中加载。
我在 .htaccess 中使用以下代码:
<FilesMatch "\.(?i:pdf)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
它运行良好,但在 Safari 中除外。
有什么想法吗?
I want to force a PDF to download, rather than load in-browser.
I'm using the following code in my .htaccess:
<FilesMatch "\.(?i:pdf)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
It works great, except in Safari.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在你的 .htaccess 文件中尝试这个
即使在我的测试中使用 safari 也能正常工作
Try this in your .htaccess file
It appears to work fine even with safari on my tests here