IIS 会话问题

发布于 2024-11-07 11:29:58 字数 209 浏览 2 评论 0原文

我有一台 Windows 2003 服务器并安装了 IIS 6.0。我在这台服务器上只发布一个网站。

我遇到了会话问题,例如:

当打开开头带有 www 或不带 www 的页面地址(www.xyz.com 或 xyz.com)时,它会保留不同的会话。申请只有一份且相同,我只想参加一次会议。

我该如何设置这个?

谢谢,

布拉克

I've got a Windows 2003 server and IIS 6.0 installed on it. And I publish only one web site on this server.

I got a problem with session such as:

When openning the page address with www or without www at the start (www.xyz.com or xyz.com), it keeps different sessions. Application is only one and same, and I want to only one session.

How could I set this?

Thanks,

Burak

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-11-14 11:29:58

您可能将会话信息存储在客户端浏览器的 cookie 中。因此,浏览器将 www.xyz.com 和 xyz.com 视为两个不同的网站域,并创建两个单独的 cookie。
要解决您的问题,您需要确保您的客户端始终仅位于两个域之一。几个解决方案是

  • IIS
  • 301 重定向

中的 url 重写我个人认为 301 重定向是最容易/最干净的实现。

You are probably storing session information in cookies in the client's browser. Therefore, the browser sees www.xyz.com and xyz.com as two different website domains and creates two separate cookies.
To solve your problem you need to make sure your client always ends up on only one of the two domains. A couple of solutions are

  • url rewriting in IIS
  • 301 redirection

Personally I think the 301 redirection is the easiest/cleanest to implement.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文