<p dir="ltr"><br>
On Jul 22, 2015 11:43, "sudharshanr" <<a href="mailto:nginx-forum@nginx.us">nginx-forum@nginx.us</a>> wrote:<br>
><br>
> I have a web server sitting behind Nginx. If there is an error, then I want<br>
> to fetch some information from the url and pass it on to a static file as<br>
> parameters. I have configured Nginx to fetch the query parameters from the<br>
> url using $arg_param_name.<br>
><br>
> However, I also need to fetch a String from the url path itself. For<br>
> instance, if the url is "<a href="http://www.website.com/path1/path2?arg1=val&arg2=someval">www.website.com/path1/path2?arg1=val&arg2=someval</a>",<br>
> how can I parse this url to fetch the last path (path2 in this case)? My<br>
> location directive is as below:<br>
><br>
> location ~*/path1/{<br>
>    ...<br>
> }<br>
><br>
> The url, however, need not always have the same number of paths. It can also<br>
> have 3 paths. So I can't use $1, $2 etc. I need to fetch the last path, i.e<br>
> the path which is immediately followed by the query parameters (the ?<br>
> symbol). Is it possible to do this using Nginx directly?<br>
></p>
<p dir="ltr">this? /([^/]+/?)$</p>
<p dir="ltr">> Thanks.<br>
><br>
> Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,260458,260458#msg-260458">http://forum.nginx.org/read.php?2,260458,260458#msg-260458</a><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">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</p>