0

我想配置 Nginx,以便这个 URL:

http://www.example.com/x/...

重定向到这里:

http://x.example.com/...

和其他一切(不是http://www.example.com/x/ ...)

http://www.example.com/...

保持原样:

http://www.example.com/...

你如何配置 Nginx 来做到这一点?

4

1 回答 1

0

您可以通过在服务器配置中设置 2 个位置块来执行 os:1 个带有重定向,1 个带有与其他类似内容匹配的默认内容:

location / {
   # directives needed to serve the regular stuff       
}

location /x/ {
  rewrite ^/x/(.*)$ $1 last;
}
于 2012-08-19T20:44:50.347 回答