我的 Web 应用程序使用表单身份验证。它工作正常。但是,当我将同一应用程序的 2 个实例安装为虚拟目录时,我可以使用相同的 cookie 登录到这两个实例。有什么办法可以将它保存到单个虚拟目录中?
这是我的 web.config。
<authentication mode="Forms">
<forms name="MyAppAuth" loginUrl="~/secured/login" protection="All" timeout="30" slidingExpiration="true" path="/">
<credentials passwordFormat="Clear">>
</credentials>
</forms>
</authentication>