标签:
1、节点 system.web 下
<!--model on:不管在本地访问还是远程访问,显示的都是错误页 off:显示的是错误信息-->
<customerErrors model="on">
<!--redirect 错误跳转地址 statusCode 错误状态码-->
<error redirect="/" statusCode="404">
</customerErrors>
2、节点 system.webServer 下
2-1默认文档 当访问的不是特定的文件的时候,比如 haha.com 或者 haha.com/file 不带后缀名的,如果不设定 defaultDocument 则会返回客户端没有找到文件或者是该文件拒绝被访问(不过貌似常见的是403 forbidden) ,如果设置了defaultDocument了,则会在该文件夹下面寻找 配置好的 文件
<defaultDocument>
<!--<directoryBrowse enabled="true"> 如果设置为true则能看到整个站点下的文件信息,存在安全问题 默认不设置,为false-->
<fiels>
<clear/><!--remove the esisting defalut document list-->
<add value="protal.ashx">
<add value="index.html">
</files>
</defaultDocument>
标签:
原文地址:http://www.cnblogs.com/yizuocheng/p/5699918.html