https://docs.microsoft.com/en-us/iis/configuration/system.webserver/defaultdocument/index

 

Default documents are enabled by default, and IIS 7 defines the following default document files in the ApplicationHost.config file as server-wide defaults:

  • Default.htm
  • Default.asp
  • Index.htm
  • Index.html
  • Iisstart.htm

 

https://stackoverflow.com/questions/4208381/how-do-i-set-the-default-page-of-my-application-in-iis7

Just go to web.config file and add following

<system.webServer>
    <defaultDocument>
      <files>
        <clear />
        <add value="Path of your Page" />
      </files>
    </defaultDocument>
</system.webServer>

 

 

相关文章:

  • 2022-12-23
  • 2021-11-01
  • 2022-12-23
  • 2021-10-27
  • 2021-06-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-20
  • 2021-08-18
  • 2022-12-23
  • 2021-11-13
  • 2021-09-17
  • 2022-12-23
相关资源
相似解决方案