我是靠谱客的博主 笑点低皮带,最近开发中收集的这篇文章主要介绍Default Document IIS中的默认页面,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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>

 

 

最后

以上就是笑点低皮带为你收集整理的Default Document IIS中的默认页面的全部内容,希望文章能够帮你解决Default Document IIS中的默认页面所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(73)

评论列表共有 0 条评论

立即
投稿
返回
顶部