简体   繁体   中英

Exclude folder from Active Directory authorization

在以ASP.NET WebPages(不是MVC)编写的Azure Web应用程序中,是否可以从Active Directory授权中排除文件夹?

Did you try to allow all user using a location section in the web.config ?

<configuration>
  <location path="path to your directory">
    <system.web>
      <authorization>
         <allow users="*"/>
      </authorization>
    </system.web>
  </location>
</configuration

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM