mikyll commented on issue #12303: URL: https://github.com/apache/apisix/issues/12303#issuecomment-2957171644
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: ```yaml - id: multiple_uris uris: - /Update - /update upstream: nodes: "httpbin.org": 1 ``` - generic URI and `filter_func`: ```yaml - id: filter_func uri: /* filter_func: | function(vars) return string.lower(vars.request_uri) == "/update" end upstream: nodes: "httpbin.org": 1 ``` -- 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