0
我有一臺運行多個網站且全部擁有自己IP地址的IIS服務器。這些網站都是ASP網站。我有一個新的網站,我需要添加,這是在直接的HTML中完成的,而不是一個ASP網站。該請求僅允許已通過其他網站認證的人進入該網站。我在Windows 2008 Server R2上使用IIS 7。在非asp網站中使用的IIS授權
不知道這是可能的,但這裏是我所做的迄今:
添加以下到system.webServer:
<modules>
<add name="FormsAuthenticationModule" type="System.Web.Security.FormsAuthenticationModule" />
<remove name="UrlAuthorization" />
<add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule" />
<remove name="DefaultAuthentication" />
<add name="DefaultAuthentication" type="System.Web.Security.DefaultAuthenticationModule" />
</modules>
添加以下到的System.Web:
<authorization>
<deny users="?" />
<allow users="*" />
</authorization>
<authentication mode="Forms" />
試圖加入以下system.web以及:
<identity impersonate="true" />
這可能嗎?