iis-7 – 使用Web.config阻止对子目录的访问

前端之家收集整理的这篇文章主要介绍了iis-7 – 使用Web.config阻止对子目录的访问前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的ASP.NET项目中有一个包含实用程序文件的子目录.代码在运行时需要它们,但我不希望它们在Web上可见.

Web.config文件中的语法是什么阻止所有用户访问单个子目录及其所有内容

解决方法

IIS 7具有新的“请求过滤”功能.您可能想要使用隐藏的段配置:
<configuration>
 <system.webServer>
  <security>
   <requestFiltering>
    <hiddenSegments>
     <add segment="BIN"/>
    </hiddenSegments>
   </requestFiltering>
  </security>
 </system.webServer>
</configuration>

这导致http://yoursite/bin无法使用(但http://yoursite/binary仍可正常工作)

查看:
http://learn.iis.net/page.aspx/143/how-to-use-request-filtering

原文链接:https://www.f2er.com/html/229336.html

猜你在找的HTML相关文章