我有一个网页,其中有一个下载文件的选项。下载很好,但在下载过程中,页面不会重定向到另一个页面,直到下载完成。
我用来下载文件的代码如下:
header("Content-Type: application/force-download");
header("Content-type: application/octet-stream");
header("Content-Disposition: inline; filename=NRI legal services_".$row['document_path']);
header("Expires: ".gmdate("D, d M Y H:i:s", mktime(date("H")+2, date("i"), date("s"), date("m"), date("d"), date("Y")))." GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header('Content-Transfer-Encoding: binary');
header('Connection: Keep-Alive');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
readfile($file);
请帮忙整理一下。提前谢谢。
答案 0 :(得分:0)
也许你需要制作一个包装页面,比如01net,它有一个链接到下载链接(在你的情况下是上面的php文件),然后使用javascript重定向到感谢页面。你不能按照你想要的方式去做。