其他分享
首页 > 其他分享> > fastdfs下载文件自定义文件名称

fastdfs下载文件自定义文件名称

作者:互联网

 

fdfs 存储节点storage安装nginx,修改nginx配置文件

location /group1/M00/ {

    root /fdfs/storage/data;
    
    if ($arg_attname ~ "^(.+)") {
        #设置下载
        add_header Content-Type application/x-download;
        #设置文件名
        add_header Content-Disposition "attachment;filename=$arg_attname";
    }
    
    ngx_fastdfs_module;
    
}

例: 192.168.100.100:8888/group1/M00/00/15/dgECTl3d4CuAqGuAADaHFkU0005.jpg?filename=hello.jpg

标签:自定义,fastdfs,jpg,Content,header,group1,arg,文件名称
来源: https://www.cnblogs.com/chong-zuo3322/p/12077405.html