给你举一个例子,例如把访问/abc路径的链接全部转到abc.com站点去:server { ... location /abc { rewrite ^(.*)$ http://abc.com last; } ...}