...potrebbe andare qualcosa tipo:
<?xml version="1.0"?>
<configuration>
<location path="/index.htm">
<system.webServer>
<httpRedirect enabled="true" destination="http://www.mio.it/index.html" httpResponseStatus="Permanent" />
</system.webServer>
</location>
<location path="/chisono.htm">
<system.webServer>
<httpRedirect enabled="true" destination="http://www.miosito.it/chi-sono.html" httpResponseStatus="Permanent" />
</system.webServer>
</location>
<location path="/foto.htm">
<system.webServer>
<httpRedirect enabled="true" destination="http://www.miosito.it/gallerie-fotografiche.html" httpResponseStatus="Permanent" />
</system.webServer>
</location>
</configuration>
...naturalmente direttamente posizionato in ROOT...
P.S: in particolare, mi domando se sia corretto lo slash / prima del nome della vecchia pagina come nel file .htaccess (in alcuni esempi di web.config non cera presente per le pagine da reindirizzare direttamente inserite nella root...)