当前的浏览器能够识别文件格式,如果浏览器本身能够解析就会默认打开,如果不能解析就会下载该文件。
那么使用nginx做资源服务器的时候,如何强制下载文件呢?
location /back/upload/file/ { if ($request_filename ~* ^.*?\.(txt|pdf|doc|xls)$){ add_header Content-Disposition "attachment;"; } }
如上,在location中添加头信息即可(测试成功,配置完毕./nginx -s reload 需要重新加载配置文件):
add_header Content-Disposition "attachment;";
原文地址:https://www.cnblogs.com/lay2017/p/8761312.html
时间: 2024-10-29 03:19:43