当我尝试从http://timmytheterror.com/home/music_detail/233下载音乐文件时
使用用户名登录:amar 密码:123456 开始下载,但 apache 停止处理其他请求。在下载完成之前,我无法访问其他页面。我要下载的编码是
$path = base64_decode($path); $id = base64_decode($id);
$file_path= "http://timmy-the-terror.s3.amazonaws.com/".$path;
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"".$path."\"");
header("Cache-Control: public");
header("Location: $file_path");
readfile($file_path);
我在单独的窗口中打开它,但父窗口仍然停止响应。