PHP+Nginx访问txt文件直接下载

2019-08-29  本文已影响0人  泽_0b48

添加以下代码到配置文件

···

location / {

    if ($request_filename ~* ^.*?.(txt)$){

        add_header Content-Disposition attachment;

}

}

···

上一篇下一篇

猜你喜欢

热点阅读