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;
}
}