FastDFS文件下载时恢复原文件名

在nginx.conf配置

nginx配置
location /group1/M00/ {
    root /fastdfs/data;  注释:填写数据存储路径,前面root别忘记
	#主要添加这块
    if ($arg_attname ~ "^(.+)") {
        #设置下载
        add_header Content-Type application/x-download;
        #设置文件名
        add_header Content-Disposition "attachment;filename=$arg_attname";
    }
    ngx_fastdfs_module;
}

nginx -s reload

posted @ 2024-10-25 15:12  开心burukku  阅读(17)  评论(0编辑  收藏  举报