前言
前端使用a
标签下载图片文件时因为浏览器机制问题导致会直接打开图片链接进行预览。
为了方便,不需要后台进行处理传输文件流返回。所以进行nginx配置,让链接图片在浏览器中直接下载
nginx配置信息
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| server { listen 8086; server_name 192.168.1.66; location / { proxy_pass http: root html; index index.html index.htm; } location /image/ { root html/devGif; autoindex on; if ($request_filename ~* ^.*?.(txt|doc|pdf|rar|gz|zip|docx|exe|xlsx|ppt|pptx|jpg|png)$){ add_header Content-Disposition 'attachment'; } } }
|