nic-chen commented on a change in pull request #3396:
URL: https://github.com/apache/apisix/pull/3396#discussion_r572888199
##########
File path: apisix/init.lua
##########
@@ -325,8 +325,29 @@ function _M.http_access_phase()
core.ctx.set_vars_meta(api_ctx)
+ local uri = api_ctx.var.uri
+ if local_conf.apisix and local_conf.apisix.delete_uri_tail_slash then
+ if str_byte(uri, #uri) == str_byte("/") then
+ api_ctx.var.uri = str_sub(api_ctx.var.uri, 1, #uri - 1)
+ core.log.info("remove the end of uri '/', current uri: ",
+ api_ctx.var.uri)
+ end
+ end
+
+ local matched_internal_api = false
+ if router.api.has_route_not_under_apisix() or
+ core.string.has_prefix(uri, "/apisix/")
+ then
+ matched_internal_api = router.api.match(api_ctx)
Review comment:
got it, thanks!
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]