我已经尝试了所有的标题。有和没有内容长度。
问题是下载过程中途出现了问题。但只是大多数时候。
有时它工作得很好。
服务器资源使用是微不足道的。所有配置文件都很好。我在运行时不运行 php 脚本。
有没有人见过这个?难道连我的错都没有吗?为什么有时?
$file = "http://domain.com/files/".$item_number.".mov";
header( 'Pragma: no-cache' );
header( 'Cache-Control: must-revalidate, post-check=0, pre-check=0' );
header( 'Content-Description: File Download' );
header( 'Content-Type: application/force-download');
//header ('Content-Type: video/quicktime');//doesnt seem to download at all here
header( 'Content-Length: '.filesize( $file ) );
header( 'Content-Disposition: attachment; filename="'.basename( $file ).'"' );
header( 'Content-Transfer-Encoding: binary' );
readfile( $file );
exit();
谢谢,对不起,我是第一次。