Hi, Having something like: http://host:port /path1/path2/path3/path4?querystring1&querystring2=value&querystring3=value
How would you apply a pattern matching to the previous URL to be rewritten similar to the following? http://host:port/path1?querystring1&querystring3=value Would something like this work? {scheme}://{host}:{port}/{path1}/{path=**}?{queryParam=*}&{**} Thanks