“这种类型的文件可能会损害您的计算机” IE9 中的消息

发布于 2024-11-10 03:41:33 字数 409 浏览 3 评论 0原文

为什么如果我按以下方式直接链接 *.exe 文件:

<a href="http://download.domain.com/setup.exe">Download setup</a>

我没有收到 IE9 消息:“这种类型的文件可能会损害您的计算机”,而使用以下 PHP 文件服务方法,弹出消息?

header("Content-type:application/octet-stream");
header("Content-Disposition: attachment; filename=setup.exe");
readfile("http://download.domain.com/setup.exe");

谢谢。

Why if I link directly the *.exe file in the following way:

<a href="http://download.domain.com/setup.exe">Download setup</a>

I don't get the IE9 message: "This type of file could harm your computer", while with the following PHP file serve approach, the message pops out?

header("Content-type:application/octet-stream");
header("Content-Disposition: attachment; filename=setup.exe");
readfile("http://download.domain.com/setup.exe");

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

沙沙粒小 2024-11-17 03:41:33

您应该添加以下标头:

  1. 添加 Content-Length 标头信息。
  2. Content-Transfer-Encoding 设置为二进制。

另外,文件是从安全网址传输的吗? (https)。

You should add the following headers:

  1. Add the Content-Length header information.
  2. Set Content-Transfer-Encoding to binary.

Also, is the file transferred from a secure url? (https).

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