What I want to do is: When someone visits http://localhost/route/abc
the server responds exactly the same as http://localhost:9000/abc
Now I configure my Nginx server like this:
location /route {
proxy_pass http://127.0.0.1:9000;
}
The HTTP request is dispatched to port 9000
correctly, but the path it receives is http://localhost:9000/route/abc
not http://localhost:9000/abc
.
Any suggestions?