<div dir="ltr"><div dir="ltr">Hi<div><br></div><div>I have this buggy backend application where I try to let Nginx sort out the problems.</div><div><br></div><div>Example of required redirect:</div><div><a href="http://ex.org/foo">http://ex.org/foo</a> -> <a href="https://ex2.org/foo/">https://ex2.org/foo/</a>    # Nx solves the bug here</div><div><div><a href="http://ex.org/foo/">http://ex.org/foo/</a> -> <a href="https://ex2.org/foo/">https://ex2.org/foo/</a></div><div><a href="http://ex.org/foo/?id=7">http://ex.org/foo/?id=7</a> -> <a href="https://ex2.org/?id=7">https://ex2.org/?id=7</a></div><div><br></div><div>Here is my current configuration which is in too parts but I have the idea that I'm doing it wrong and it can be done in only one "location" with a regex:</div><div><br></div><div><div>    location ~ /foo$ {</div><div>        return 301 <a href="https://ex2.org">https://ex2.org</a>$request_uri/;</div><div>    }</div><div>    location ~ /foo/$ {</div><div>        return 301 <a href="https://ex2.org">https://ex2.org</a>$request_uri;</div><div>    }</div></div><div><br></div><div>I have several paths like /foo/ where I would like to have them all in one regex like</div><div>  location ~ /(foo|bar)/$ {</div><div><br></div><div>-- <br></div><div dir="ltr" class="gmail_signature"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><br></div><div dir="ltr"><span style="color:rgb(0,0,0);font-family:Arial,sans-serif;font-size:12px"><p>Venlig hilsen - best regards<br></p></span></div></div></div></div></div></div></div></div></div>