0

可能重复:
在 Asp.net
ASP.NET 默认文档中设置默认页面

我已从我的 Web 应用程序中删除了 default.aspx。现在,当我运行应用程序时,它只在浏览器中显示目录的内容。请问代码/设置行在哪里更改站点的入口点,例如提供的第一页是forum.aspx而不是default.aspx

问候

4

1 回答 1

5

默认文档是 IIS 设置。您也可以使用以下示例从 web.config 更改它:

<configuration>
   <system.webServer>
      <defaultDocument enabled="true">
         <files>
            <add value="home.html" />
         </files>
      </defaultDocument>
   </system.webServer>
</configuration>

在以下位置查找所有详细信息:http ://www.iis.net/ConfigReference/system.webServer/defaultDocument

于 2012-05-16T15:46:18.793 回答