.htaccess 在 Safari 中强制下载 PDF

发布于 2024-11-03 04:21:32 字数 264 浏览 0 评论 0原文

我想强制下载 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抚笙 2024-11-10 04:21:32

在你的 .htaccess 文件中尝试这个

SetEnvIf Request_URI "\.pdf$" requested_pdf=pdf
Header add Content-Disposition "attachment" env=requested_pdf

即使在我的测试中使用 safari 也能正常工作

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文