nginx网站 如何打开pdf txt doc word文件时直接下载 而不是预览?元素模板为您解答
在nginx 网站里面 可以通过设置伪静态方式,加入下面代码即可
loca tion ~ .*.(txt|doc|pdf|rar|gz|zip|docx|exe|xlsx|ppt|pptx)$ { add_hea der Co ntent-Disposition attachment; }
或者在配置设置里面加入下面代码
loc ation / { if ($request_filename ~* ^.*?\.(html|doc|pdf|zip|docx)$) { add_header Con tent-Disposition attachment; add_header Con tent-Type application/octet-stream; } }