nginx配置直接下载文件

参考地址:https://blog.csdn.net/u011519550/article/details/104419016

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

注意:root F://doc 目录的下一级一定是download  

posted @ 2020-11-23 16:55  炫舞风中  阅读(1191)  评论(0编辑  收藏  举报