nginx重定向写出了死循环:
正确的写法如下:
if ($host ~ wt\.abc\.cn) {
rewrite ^/$ http://wt.abc.cn/static/mail/register.html last;
rewrite ^/\?from\=([0-9]+) http://wt.abc.cn/sc/mb/rr.html?from=$1 last;
}
时间: 2024-10-10 15:30:57
nginx重定向写出了死循环:
正确的写法如下:
if ($host ~ wt\.abc\.cn) {
rewrite ^/$ http://wt.abc.cn/static/mail/register.html last;
rewrite ^/\?from\=([0-9]+) http://wt.abc.cn/sc/mb/rr.html?from=$1 last;
}