我有一个网络应用程序。在我使用 sso 进行身份验证之前。我将下面显示的代码放在 web.config 页面中。
<authentication mode="Forms">
<forms loginUrl="https://sso.***.***.***/login" timeout="30" defaultUrl="~/Index.aspx" cookieless="UseCookies" slidingExpiration="true" path="/" />
</authentication>
它运作良好。每个人去那个网站都需要先登录。现在我们需要改变一些页面向公众开放。因此人们不需要登录即可访问某些页面,但某些页面仍然需要登录(使用 sso)。怎么做?
谢谢