web.config 中的多个/不同身份验证设置
我将如何为我的网络应用程序的不同部分设置不同的身份验证标签? 假设我有:
/
/folder1/
/folder2/
是否可以为每个文件夹指定不同的
标签?
我希望folder1 使用Windows 身份验证,但folder2 使用Forms 身份验证。
我尝试在
标记中进行操作,但看起来您不能在
标签,至少不是通过内置网络服务器的 VS 2008。
标记中使用
标记。 location/>
此错误显示 - 错误 3 在应用程序级别之外使用注册为 allowedDefinition='MachineToApplication' 的部分是错误的。 此错误可能是由于未将虚拟目录配置为 IIS 中的应用程序而导致的。
<location path="/folder1">
<system.web>
<authentication mode="Forms" />
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
How would I go about setting different authentication tags for different parts of my web app? Say I have:
/
/folder1/
/folder2/
Would it be possible to specify different <authentication/>
tags for each folder?
I want folder1 to use Windows authentication but folder2 use Forms authentication.
I tried doing in a <location/>
tag but it doesn't look like you can have <authentication/>
tags in a <location/>
tags, at least not via VS 2008 with it's built in webserver.
This errors out saying - Error 3 It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.
<location path="/folder1">
<system.web>
<authentication mode="Forms" />
<authorization>
<deny users="?"/>
</authorization>
</system.web>
</location>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您只能在顶层
web.config
上使用
。 您可能需要创建多个应用程序。 即,您可以在应用程序中创建应用程序,并在每个应用程序中使用不同的身份验证模式。You can only have
<authentication />
on the top levelweb.config
. You may have to create multiple applications. ie you can create an application within an application and use different authentication modes in each one.我认为您可以在folder1上设置forms身份验证授权,然后
通过在文件夹上设置windows权限来控制windows访问。
我没有尝试过,但我想不出为什么这不起作用。
I think you can set the forms authentication authorization on folder1 to
then control the windows access via setting windows permissions on the folder.
I haven't tried it, but I can't think of why that wouldn't work.
这些设置仅在 ASP.Net 应用程序的根级别有效。 要在子文件夹中使用不同的设置,您需要进入 IIS 并将该子文件夹设置为新应用程序。
完成此操作后,该文件夹将在 II 管理器中具有不同的图标。 在子文件夹中,创建一个新的 web.config 文件并在其中添加新的身份验证设置。
更多信息请访问 创建应用程序。
These settings are only valid at the root level of your ASP.Net application. To use different settings in a sub folder you will need to go into IIS and set that sub folder to be a new application.
Once you done this, the folder will have a different icon in the IIs manager. Inside your subfolder, create a new web.config file and add the new authentication settings there.
More information available at Creating Applications.