

1 <?xml version="1.0" encoding="UTF-8"?> 2 <configuration> 3 <system.webServer> 4 <defaultDocument> 5 <files> 6 <remove value="default.aspx" /> 7 <remove value="iisstart.htm" /> 8 <remove value="index.html" /> 9 <remove value="index.htm" /> 10 <remove value="Default.asp" /> 11 <remove value="Default.htm" /> 12 <add value="login.html" /> 13 </files> 14 </defaultDocument> 15 </system.webServer> 16 </configuration>
本文介绍如何通过修改IIS配置文件,将默认首页设置为login.html,涉及移除原有默认首页如default.aspx、iisstart.htm等,并添加新的首页文件。

411

被折叠的 条评论
为什么被折叠?



