How do I route the request that contains some dynamic part. For example I'd like request
/v1/employees/{empid}/reports
to be be routed to:
/my/host/v1/employees/{empid}/reports
Here {empid}
is dynamic (alphanumeric) and changes from request to request. regex
looks like would help with matching the URL pattern but how do I pass that dynamic value to downstream?