私の 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>