将 Windows 身份验证应用于单个文件夹

发布于 2024-12-04 01:04:12 字数 112 浏览 2 评论 0原文

在我的 asp.net Web 应用程序中,是否可以在文件夹上设置 Windows 身份验证并允许无需身份验证即可访问我网站的其余部分?可以通过应用程序的 web.config 进行设置吗?如果可以,如何设置?

In my asp.net web application is it possible set up windows authentication on a folder and allow to rest of my site to be access without authentication? Can this be set up via the web.config of the application and if so, how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热血少△年 2024-12-11 01:04:12

是的,这应该是可能的。您可以尝试以下操作:

首先,在 IIS 中启用匿名和 Windows 身份验证

然后将 Windows 条目添加到 web.config

<authentication mode="Windows" />
  <authorization>
   <allow users="*" />
</authorization>

最后,添加 您想要保护的文件夹的配置条目,拒绝匿名用户

<location path="pathToSubFolder">
  <system.web>
    <authorization>        
        <deny users="?" />
    </authorization>
  </system.web>
</location>

Yes it should be possible. You can try the following:

First, enable Anonymous and Windows Authentication in IIS

Then add a windows <authentication> entry to the web.config

<authentication mode="Windows" />
  <authorization>
   <allow users="*" />
</authorization>

Finally, add a <location> config entry for the folder you would like to secure, denying anonymous users

<location path="pathToSubFolder">
  <system.web>
    <authorization>        
        <deny users="?" />
    </authorization>
  </system.web>
</location>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文