I have a url rewrite rule for my IIS 7 server which is following:
<rewrite>
<rules>
<rule name="topcontent">
<match url=".*">
<action type="rewrite" url="mysite.com/{R:0}"/>
</match>
</rule>
</rules>
</rewrite>
Now I have to provide an exception to this rule, for a particular location, which is ‘http://tempurl94.goto.com/?q=x&m=y’ where ‘http://tempurl94.goto.com’ will always be there
in the url, and query parameter q and m may vary. So we have to write different rule for
this url. How to write a different (match url=?).
May be I can write a rule before the ‘topcontent’ rule and say stopProcessing=’true’.
But I need to know what should I write inside <match url=' ? '> and what should I write in <action> tag.
You need to add
conditionselement to the new rule. Put the new rule before the current one and setstopProcessingtotrueas you mentioned.