I have some AJAX request has url like:
https://www.mydomain.com/v1/device/1234/foo
https://www.mydomain.com/v1/device/1234/bar
https://www.mydomain.com/v1/device/1111/foo
https://www.mydomain.com/v1/device/2222/bar
And I want to create a rule to name it like:
"www.mydomain.com/v1/device/{id}/bar" AND "www.mydomain.com/v1/device/{id}/foo"
I have try this way but seems like it's not possible.
Is there otherway to do this?!