So when nginx responds with a 301, is that an additional rountrip for the user?<div><br></div><div>Could I somehow maintain the url for the client, but internally re-write it to the updated url so my web application can handle it correctly?<br>

<br><div class="gmail_quote">On Mon, Oct 15, 2012 at 12:44 AM, Edho Arief <span dir="ltr"><<a href="mailto:edho@myconan.net" target="_blank">edho@myconan.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="HOEnZb"><div class="h5">On Mon, Oct 15, 2012 at 10:56 AM, S Ahmed <<a href="mailto:sahmed1020@gmail.com">sahmed1020@gmail.com</a>> wrote:<br>
> I'm porting a .asp application over to something else, and I need to<br>
> re-write the following url pattern:<br>
><br>
> <a href="http://www.example.com/posts/get_post.asp?post_id=123" target="_blank">www.example.com/posts/get_post.asp?post_id=123</a><br>
><br>
> to<br>
><br>
> <a href="http://www.example.com/posts/123" target="_blank">www.example.com/posts/123</a><br>
><br>
<br>
</div></div>location = /posts/get_post.asp {<br>
  return 301 /posts/$arg_post_id;<br>
}<br>
<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</blockquote></div><br></div>