NGINX配置pdf文件可直接下载-九五小庞

Nginx下载路径

http://nginx.org/en/download.html

 

Nginx中的配置

 

server {
listen 8888;
server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location / {
root F:/1/pdf;
if ($request_filename ~* ^.*?\.(html|doc|pdf|zip|docx)$) {
add_header Content-Disposition attachment;
add_header Content-Type application/octet-stream;
}


}

posted @ 2021-01-14 22:40  九五小庞  阅读(1081)  评论(0编辑  收藏  举报