I try to create rule. I have: http://host.com/ph.aspx?t=org&id=12345.jpg I want to get: http://host.com/imgrs.axd?w=800&file=12345.jpg
I wrote this one:
<rule name="PhotoOrg" patternSyntax="Wildcard" stopProcessing="true">
<match url="*ph.aspx?t=org&id=*" />
<action type="Redirect" url="imgrs.axd?w=800&file={R:2}" appendQueryString="false" />
<conditions>
</conditions>
</rule>
But redirect don't work.