location /image {
    rewrite ^/image/(.*)$  http://baidu.com/$1;
}



location /test {
    rewrite ^/test$  http://sohu.com/;
}

nginx 重定向_知识