问题分析思路
1、是否使用php 函数header进行了设置
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.$filename.'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
2、php.ini 相关配置是否正确
output_buffering=4096
3、nginx的proxy_set_header是否冲突