I'm using urlrewriting.net and want to add a rule to map all classic asp requests to default.aspx.
Unfortunately my attempt below just results in a redirect loop, so I must be doing something wrong.
<add name="LegacyRedirect"
virtualUrl="^~/(.*).asp"
redirectMode="Permanent"
redirect="Application"
destinationUrl="~/default.aspx"/>
Many thanks, Ben