<div dir="ltr"><div>Hi there,</div><div><br></div>Here is a part of my nginx config file:<div><br></div><div>location /test/ {</div><div>   proxy_pass <a href="http://localhost:1024/">http://localhost:1024/</a>;</div><div>}</div><div><br></div><div>If I have it as above the GET /test/xxxx request will be sent to port 1024 as /xxxx and it also decodes the URI.</div><div><br></div><div>I know that if I remove / from the end of proxy_pass then it'll send the URI without decoding special characters (such as %2F). But in this case it sends /test/xxxx to port 1024.</div><div><br></div><div>So, my question is how I can get nginx to remove /test/ from the URI but does NOT decode special characters (such as %2F)?</div><div><br></div><div>Thank you for your help.</div><div><br></div><div><br></div></div>