需要将位置(mydomain.com/x)重定向到另一个域(newdomain.com)
尝试:
location /x { rewrite ^(.*)$ http://www.newdomain.com redirect; }
不工作...... 有人可以帮忙吗?
答案 0 :(得分:0)
您可能需要在/x
之后捕获网址部分,并在新位置的末尾重写它:
location /x {
rewrite ^/x(.*)$ http://www.newdomain.com$1 redirect;
}