环境 W10 IIS10

输入网址后,显示一个默认首页,在IIS中,一般指定一个根目录下的文件例如index.html

如果要指定子目录下的文件,

例如让 /home/index.html 这个文件成为默认文档.那么添加默认文档 home/index.html (前面不能带 / ) ,然后排到第1位就行了.

这个配置反应在web.config的配置节如下:

<defaultDocument>
  <files>
    <add value="home/index.html" />
  </files>
</defaultDocument>

属于<system.webServer>子节点

相关文章:

  • 2022-12-23
  • 2021-09-22
  • 2021-04-16
  • 2021-08-06
  • 2022-12-23
  • 2022-12-23
  • 2021-08-23
  • 2022-12-23
猜你喜欢
  • 2021-11-23
  • 2022-03-04
  • 2021-07-12
  • 2022-12-23
  • 2021-09-02
  • 2022-12-23
  • 2021-08-19
相关资源
相似解决方案