ASP.NET默认文档

Atu*_*ain 1 html asp.net hosting web-hosting

我有default.aspx和index.html.我上传了两个到服务器,但我希望我的第一页以index.html开头.我该怎么办?

Dan*_*llo 8

如果您无权访问IIS,并且您在IIS 7(Windows Server 2008)上托管,则可能需要将其放入您的web.config文件中:

<system.webServer>
    <defaultDocument>
        <files>
            <clear / >
            <add value="index.html" />
        </files>
    </defaultDocument>
</system.webServer>   
Run Code Online (Sandbox Code Playgroud)

来源:如何使用IIS7 web.config添加默认文档