使用 Windows 身份验证时允许访问 IIS 网站中的文件夹
我有一个 IIS7.5 Intranet 网站,我已使用 Windows 身份验证保护该网站。
我想允许访问网站子文件夹中的文件而不提示输入 Windows 凭据。
我的 web.config 如下所示。当我浏览到 http://myserver:9876/SomeFolder/test.html 我仍然提示输入 Windows 凭据:
I have an IIS7.5 intranet website which I have secured using Windows Authentication.
I want to allow access to a file in a sub-folder of the website without prompting for Windows credentials.
My web.config is shown below. When I browse to http://myserver:9876/SomeFolder/test.html I am still prompted for Windows credentials :
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决该问题的方法,但由于 wcf,我认为这是不可能的。我刚刚将“SomeFolder”上的身份验证方案更改为“匿名”,并且它有效。
我还没有回答我的问题,所以知道我原来的方法是否可行仍然很有趣。
I found a work around for the problem, which I thought wasn't possible due to wcf. I just changed the authentication scheme to 'Anonymous' on "SomeFolder" and it works.
I haven't answered my question, so it still would be interesting to know if my original approach was possible.