nginx 重定向

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



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

原文地址:https://www.cnblogs.com/hzcya1995/p/13348416.html