Quotelast stops processing the current set of ngx_http_rewrite_module directives and starts a search for a new location matching the changed URI;
break stops processing the current set of ngx_http_rewrite_module directives as with the break directive;
last 和 break 都会停止当前块中的 rewrite 规则,不同之处地在于,last 之后,会继续寻找 rewrite 后匹配的 URI 路径。