Nginx下载文件重命名

location ^~/temp{
	alias  /home/file/temp;
	expires 7d;
	if ($request_uri ~* ^.*\/(.*)\.(txt|doc|pdf|rar|gz|zip|docx|exe|xlsx|ppt|pptx|jpg|png)(\?n=([^&]+))$) {
		add_header Content-Disposition "attachment;filename=$arg_n.$2";
	}
}
posted @ 2020-09-02 21:04  墨雨生花  阅读(1096)  评论(0编辑  收藏  举报