[转][C#]Web.config 相关配置

设置默认首页
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <defaultDocument>
            <files>
                <clear />
                <add value="index.asp" />
                <add value="Default.htm" />
            </files>
        </defaultDocument>
    </system.webServer>
</configuration>

来自:https://www.landui.com/help/show-8311.html

 允许目录浏览

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.webServer>
        <directoryBrowse enabled="true" />
    </system.webServer>
</configuration>

其它设置参考:http://www.cnblogs.com/enfp/articles/7718264.html

posted on 2018-09-12 10:19  z5337  阅读(723)  评论(0)    收藏  举报