(转)web.config详解之在文件中配置网站默认页面

时间:2014-08-11 11:26:02   收藏:0   阅读:175

<configuration></configuration>中添加下面的配置

    <system.webServer>
        <defaultDocument>
            <files>
                <clear />
                <add value="index.aspx" />
                <add value="index.html" />
                <add value="Default.htm" />
                <add value="Default.asp" />
                <add value="index.htm" />
                <add value="iisstart.htm" />
                <add value="default.aspx" />
            </files>
        </defaultDocument>
    </system.webServer>

(转)web.config详解之在文件中配置网站默认页面,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!