On 15 Mar 2014 17:30, "gokhanege" <nginx-fo...@nginx.us> wrote:
>
> Where is the problem? I cound not found it.

Your problem is that all of your .* matches are greedy, whereas you
(probably) want only the last to be greedy. Have a Google for how to do
that with regular expressions.

You also might want to replace /some/ of your "(.*)" with "([^-]*)" if they
should /never/ contain hyphens.

HTH,
J
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to