Hi,
I have the scenario where multiple query parameters should be transformed to the different values. For example:
http://host/page.aspx?p1=1&p2=2 transforms to http://host/path/m1/m2
Where 1 transforms to m1 and 2 transforms to m2 based on the rewrite map tables.
Parameters p1 and p2 are mandatory and can be in any order within the query string.
How the query parameters can be fetched from the {QUERY_STRING} so the following pseudo action will work? Apparently regex with named groups is not supported.
host/path/{rewriteMap1:{C:p1}}/{rewriteMap2:{C:p2}}
Thanks