时间:2021-07-01 10:21:17 帮助过:13人阅读
}
这里break是跳过之后的rewrite规则,直接执行后面的location。然后在增加匹配download的location,这个location要放在 匹配所有的 location / 之前。
location ~* "^/download/.*" {
root /data1/www/htdocs/buy.sc.weibo.com/;
add_header Content-Disposition 'attachment;';
add_header Content-Type 'application/octet-stream; charset=utf-8';
add_header Content-Transfer-Encoding 'binary';
error_page 404 http://weibo.com/sorry;
}
以上就介绍了 nginx配置的一点问题,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。