Answer the question
In order to leave comments, you need to log in
How to redirect without changing URL?
How can I redirect from one domain to another without changing the URL?
You need to set up a redirect from the addresses:
https://u.domain.com/(.*)
to
https://apitest.domain.com/u/$1
so that the URL in the address bar does not change.
Answer the question
In order to leave comments, you need to log in
Something like this:
if ($host ~* ^u.domain.com\.(.*)$) {
rewrite / https://apitest.domain.com/u/$request_uri permanent;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question