从 Http 迁移到 Https 时会话丢失
我在从 http://mysite.com 迁移到 https://secure.mysite.com 导致用户丢失其会话信息。处理这个问题的最佳方法是什么?谢谢
I am having an issue where moving from http://mysite.com to https://secure.mysite.com causes the user to lose their session information. What would be the best way to deal with this? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您可以使用
SQL Server
来保留您的Session
。这会有帮助的
配置 SQL Server 以存储 ASP.NET 会话状态
I think you can use the
SQL Server
to keep yourSession
.This will be helpful
Configure SQL Server to Store ASP.NET Session State
由于 url 从 mysite.com 更改为 secure.mysite.com,会话正在丢失 是否可以保持 url 相同并仅使用安全 https 协议?
The session is being lost because the url is changing from mysite.com to secure.mysite.com Is it possible to keep the url the same and just use the secure https protocol?