-- fictional example of a plugin's handler.lua using the PDK function Handler:access(conf) if kong.request.get_method() == "GET" then -- retrieve the client request's path local path = kong.request.get_path() -- make the request to the service with the updated path kong.service.request.set_path(path .. "/hello/world") end end