1450793561 commented on issue #12303:
URL: https://github.com/apache/apisix/issues/12303#issuecomment-2957749165

   > Currently there's not way to set ignore case in route API URI (see [APISIX 
Docs | Admin 
API](https://apisix.apache.org/docs/apisix/admin-api/#request-body-parameters)).
   > 
   > However, you could achieve something similar by using:
   > 
   > * multiple URIs, with `uris` parameter:
   >   - id: multiple_uris
   >     uris:
   >       - /Update
   >       - /update
   >     upstream:
   >       nodes:
   >         "httpbin.org": 1
   > * generic URI and `filter_func`:
   >   - id: filter_func
   >     uri: /*
   >     filter_func: |
   >       function(vars)
   >         return string.lower(vars.request_uri) == "/update"
   >       end
   >     upstream:
   >       nodes:
   >         "httpbin.org": 1
   
   How to write the above using JSON format?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@apisix.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to