Por exemplo:
nome do arquivo html do www.mydomain.com como main.html
www.mydomain.com/site 1 nome do arquivo como site 1.html ..etc
Etapa 1: ganhar + tipo R "inetsrv" sem cotação, pressione Enter - > config - > Abra o arquivo applicationHost.config (use o notepad ++)
etapa 2: Descubra abaixo da linha (aproximadamente o número da linha = 218)
<defaultDocument enabled="true">
<enter code here'files>
<add value="Default.htm" />
<add value="Default.asp" />
<add value="index.htm" />
<add value="index.html" />
<add value="iisstart.htm" />
<add value="default.aspx" />
</files>
</defaultDocument>
passo 3: Adicione o nome do arquivo www.mydomain.com
Exemplo
<add value="main.html" />
e salve
etapa 4: Abra o IIS e vá para o site 1 - > abrir documento padrão - > pressione Adicionar e insira o nome do arquivo do site 1 (site1.html)
etapa 5:
Abra o arquivo web.config e cole as linhas
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<location path="site 1">
<system.webServer>
<defaultDocument enabled="true">
<files>
<clear />
<add value="site1.html" />
</files>
</defaultDocument>
</system.webServer>
</location>
</configuration>
----------------------------------------------- --- e salve
etapa 6: site 2 mesmo que site 1 (altere o caminho do local como "site 2" e o nome do arquivo html)
Exemplo:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<location path="site 1">
<system.webServer>
<defaultDocument enabled="true">
<files>
<clear />
<add value="site1.html" />
</files>
</defaultDocument>
</system.webServer>
</location>
<location path="site 2">
<system.webServer>
<defaultDocument enabled="true">
<files>
<clear />
<add value="site2.html" />
</files>
</defaultDocument>
</system.webServer>
</location>
</configuration>