您好我希望用户能够从我的配置有 nginx PHP 的服务器(Windows)下载 PDF 文件。这是我的 nginx.conf(服务器块)
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root html;
index index.php;
}
location /download {
internal;
alias /protected;
}
}
}
..和 PHP 文件(标题部分)
$file = '/download/real-pdf-file.pdf'; //this is the physical file path
$filename = 'user-pdf-file.pdf'; //this is the file name user will get
header('Cache-Control: public, must-revalidate');
header('Pragma: no-cache');
header('Content-Type: application\pdf');
header('Content-Length: ' .(string)(filesize($file)) );
header('Content-Disposition: attachment; filename='.$filename.'');
header('Content-Transfer-Encoding: binary');
header('X-Accel-Redirect: '. $file);
该文件是从 URL 调用的,如下所示:
download.php?id=a2a9ca5bd4a84294b421fdd9ef5e438ded7fcb09
我从这里尝试了几个示例/解决方案,但到目前为止没有一个有效。该文件很大(每个在 250 到 400 MB 之间),每个用户将能够下载 4 个文件。
使用 PHP 下载部分没有问题,只有似乎不起作用的 nginx 配置。未检测到错误日志。