nginx rewrite小记以及break,last区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx rewrite小记以及break,last区别相关的知识,希望对你有一定的参考价值。
需求:访问http://192.168.1.222:8099/ksdkfd/callback 其中ksdkfd是任意字符
跳转到http://192.168.1.222:8099/api/paycb/ksdkfd
location ~* ^/.+/callback$ {
index index.html index.htm;
rewrite "^/(.+)/callback" "/api/paycb/$1" permanent;
}
break 和last的区别
location /break {
rewrite /break/(.*) /test/$1 break;
echo break page;
}
location /last {
rewrite /last/(.*) /test/$1 last;
echo last page;
}
location /test/ {
echo test page;
}
匹配到break之后,rewrite完成了。继续执行下面的。
匹配到last之后,rewrite完成了。跳出location,重新匹配rewrite之后的url,也就是匹配到了/test/ ;
注意,要使用echo需要安装nginx的echo模块。
以上是关于nginx rewrite小记以及break,last区别的主要内容,如果未能解决你的问题,请参考以下文章
nginx配置指令rewrite的last、break、redirect、permanent参数详解