0

我有一个网页,其中有一个下载文件的选项。下载很好,但是在下载过程中,页面在下载完成之前不会重定向到另一个页面。

我用来下载文件的代码如下:

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);

请帮忙整理一下。提前致谢。

4

1 回答 1

0

也许您需要制作一个包装页面,例如 01net,其中包含指向下载链接的链接(在您的情况下是上面的 php 文件),然后使用 javascript 重定向到感谢页面。你不能按照你试图做的方式去做。

于 2013-08-10T09:25:17.090 回答