IIS Windows 身份验证替代方案
对于我刚刚移动的 .NET 1.1 网站,有一个文件夹使用 Windows 身份验证受到 IIS (6) 的密码保护。新服务器正在运行 IIS 7,并且主机不想安装 basicAuthentication 或 windowsAuthentication 角色,因为它是共享服务器。还有哪些其他方法可以保护此文件夹?它只需要一个用户名/密码,不需要任何特殊的管理。
我以为我看到 IIS 7 有自己的用户和身份验证系统,这是一个可行的选择吗?
For a .NET 1.1 website that I just moved, there is a folder that was password protected from IIS (6) using windows authentication. The new server is running IIS 7 and the host does not want to install basicAuthentication or windowsAuthentication roles because it's a shared server. What other alternatives are there to protecting this folder? It only needs a single username/password and doesn't need any special management.
I thought I saw IIS 7 had it's own users and authentication system, is this a viable option?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将安全性放在用户、用户组或角色的特定文件夹的 web.config 中:
在 web.config 中设置特定页面或文件夹的授权规则
You can put security in the web.config on a particular folder for a user, set of users, or a role:
Setting authorization rules for a particular page or folder in web.config
这篇关于在 IIS 7 中配置身份验证的 TechNet 文章绝对值得一读。
This TechNet article about Configuring Authentication in IIS 7 is definitely worth reading.