下载文件时出现 IE8 错误

IE8 error while downloading a file

我在下载文件时收到错误消息。它只发生在 windows XP 和 Windows 7 的 IE8 中。一旦我点击下载 link,这个错误就来了

"Unable to download 11820 from subdomain.domain.org" "Unable to open this internet site. The requested site is either unavailable or cannot be found. Please try again later."

这里11820是节点id。尽管 url 是 https://subdomain.domain.org/

,但我在我的站点中使用了 SSL 证书

找到解决方案

$headers = array( 'Content-Type' => 'force-download', 'Content-Disposition' => 'attachment; filename="' . $file->filename . '"', 'Content-Length' => $file->filesize, 'Content-Transfer-Encoding' => 'binary', 'Pragma' => 'private, no-cache', 'Cache-Control' => 'private, no-store, no-cache, max-age=0, must-revalidate', 'Expires' => '0', 'Accept-Ranges' => 'bytes' );