PHP+Nginx访问txt文件直接下载
2019-08-29 本文已影响0人
泽_0b48
添加以下代码到配置文件
···
location / {
if ($request_filename ~* ^.*?.(txt)$){
add_header Content-Disposition attachment;
}
}
···
添加以下代码到配置文件
···
location / {
if ($request_filename ~* ^.*?.(txt)$){
add_header Content-Disposition attachment;
}
}
···