在nginx配置加入以下内容: 可以让txt文件正常下载
location ~ /test/ {
if ($request_filename ~* ^.*?\.(txt|doc|pdf|rar|gz|zip|docx|exe|xlsx|ppt|pptx)$) {
add_header Content-Disposition "attachment; filename=$1";
add_header Content-Type "application/octet-stream";
}
root /usr/share/nginx/html/;
allow all;
autoindex on;
charset utf-8;
}
评论区