下载文件时出现错误弹出。它只发生在Windows XP和Windows 7上的IE8中。一旦我点击下载链接,这个错误就会出现
"无法从subdomain.domain.org下载11820" "无法打开此网站。请求的网站不可用或无法找到。请稍后再试。"
这里11820是节点ID。我在我的网站中使用SSL证书,但网址为https://subdomain.domain.org/
答案 0 :(得分:0)
找到解决方案
$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'
);