Вы можете попробовать использовать приведенное ниже правило:
<rewrite>
<rules>
<clear />
<rule name="Removefoldername" stopProcessing="true">
<match url="^abc$|^abc/page1.html$" />
<conditions>
</conditions>
<action type="Redirect" url="page1.html" />
</rule>
<rule name="RewriteToFile">
<match url="^(?!abc/)page1.html" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="abc/page1.html" />
</rule>
</rules>
</rewrite>