502使用标头内容长度时的错误网关

时间:2015-07-24 17:03:52

标签: php wordpress download http-headers

我试图强制浏览器在用户访问此网站时下载mp3。我遇到的问题是,如果我设置Content-Length标头,页面会抛出502 Bad Gateway错误,如果我没有尝试下载文件,但文件大小为0字节。该网站恰好运行wordpress。任何方向都会非常感激。我对wordpress不熟悉。

    $file = '../uploads/2015/01/Thunder.mp3';
    header('Content-type: application/mp3');
    header("Content-Disposition: attachment; filename=\"$file\"");
    header('Content-Length: '.filesize($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');

1 个答案:

答案 0 :(得分:0)

尝试添加:

readfile($file);

之后:

header('Pragma: public');