Hi, I am trying to rewrite some urls on a windows server and if I can get my head round a basic one I should be ok writing the other rules I need.
The url I have is:
The url I am after is:
The code I have so far is:
The url I have is:
The url I am after is:
The code I have so far is:
Code:
<rewrite>
<rules>
<rule name="Rewrite to Level1.aspx">
<match url="^Level1.aspx?Grp1Code=([0-9]+)Grp1Desc=" />
<action type="Rewrite" url="{R:1}" />
</rule>
</rules>
</rewrite>