I have a client request to rewrite the following, where "anything" can be any named directory:
https://clientdomain.com/anything/final-destination
to:
https://clientdomain.com/final-destination
I know I can identify "anything" with the following regex:
(?<=clientdomain.com\/)(.*)(?=final-destination)
...but how to incorporate that into a working rule eludes me