Is it possible to rewrite http://web1.com/web1/def.aspx to http://web1.com/def.aspx?
It seems like it should be possible, but it's not working for me. Here is a rule I'm using.
<match url="web/*" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="{R:1}" appendQueryString="false" />
</rule>
I can browse to http://web1.com/web1/def.aspx, but it shows up as is. It is not being rewritten.
Any suggestions?