我们基于 Sitecore 6.6.0 (rev. 120918) 的网站可以在 http 和 https 上运行。我们还有一项安全要求,即无论网站是否通过 http 访问,都使所有 cookie 都通过 SSL 传输。
我们通过使用 web.config 中的 requireSSL 属性实现了这一要求,如下所述:如何在 ASP.NET 会话 Cookie 上设置安全标志?
通过此更改,我们的公共网站可以正常运行,并且在 Firebug 中进行分析时,我们可以看到所有 cookie 都是“安全的”,即使通过 http 访问该网站也是如此。
但问题是当我尝试通过 http 登录到 sitecore 管理门户时,它会抛出错误The application is configured to issue secure cookies. These cookies require the browser to issue the request over SSL (https protocol). However, the current request is not over SSL.
我可以访问 sitecore 管理门户的唯一方法是通过 https。即使使用 https,它也会带来一些奇怪的问题。使用一段时间后,它说很多管理员用户已登录,我必须踢一些才能进入。我也无法远程访问管理员门户。
为什么公共网站使用 SSL cookie,但 sitecore 管理门户存在 SSL cookie 问题。会不会是和我们网站不兼容的配置?