如何从web.config中的授权中排除文件?

时间:2014-08-08 23:36:30

标签: asp.net .net authorization web-config

我在我的应用程序中传播了web.config,它设置了这样的授权:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.web>
    <authorization>
      <allow roles="Authors" />
      <allow roles="Editors" />
      <deny users="*" />
    </authorization>
  </system.web>
</configuration>

无论web.config中的授权权限如何,我都需要提供对所有*.sitemap文件的访问权限。这是可能的,希望只从根web.config设置一次吗?

0 个答案:

没有答案