码迷,mamicode.com
首页 > Web开发 > 详细

webconfig 相关

时间:2016-07-24 01:42:18      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

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>

 

webconfig 相关

标签:

原文地址:http://www.cnblogs.com/yizuocheng/p/5699918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!