将 Windows 身份验证应用于单个文件夹
在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这应该是可能的。您可以尝试以下操作:
首先,在 IIS 中启用匿名和 Windows 身份验证
然后将 Windows
条目添加到 web.config最后,添加
您想要保护的文件夹的配置条目,拒绝匿名用户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.configFinally, add a
<location>
config entry for the folder you would like to secure, denying anonymous users