-
Notifications
You must be signed in to change notification settings - Fork 47
query param support? #10
Comments
The problem was that the query params mixed the matching in router.lua So I removed them from the URI that was feeding the router.. with following workaround code: -- Echo the ngix requests to router module |
I had the same issue and submitted below PR which will fix this issue. |
alternate option is to use ngx.var.uri instead of ngx.var.request_uri or your local variable uri_without_query_params |
Thanks for info and the fix! |
I've given this a try now and like it much. However, it is unclear to me how this works with query parameters? There was example with POST but I would like to use with GET and query params such as /hello?name=Peter is this possible?
The text was updated successfully, but these errors were encountered: