IIS 会话问题
我有一台 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能将会话信息存储在客户端浏览器的 cookie 中。因此,浏览器将 www.xyz.com 和 xyz.com 视为两个不同的网站域,并创建两个单独的 cookie。
要解决您的问题,您需要确保您的客户端始终仅位于两个域之一。几个解决方案是
中的 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
Personally I think the 301 redirection is the easiest/cleanest to implement.
在 Windows IIS 6 中使用规范 URL 和 301 重定向
http://www.barrywise.com/2008/10/seo-canonical-urls-and-301-redirects-in-windows-iis-6-iis-7/
http://www.hpseo.co.uk/301-redirect-教程-iis/
use Canonical URLs And 301 Redirects In Windows IIS 6
http://www.barrywise.com/2008/10/seo-canonical-urls-and-301-redirects-in-windows-iis-6-iis-7/
http://www.hpseo.co.uk/301-redirect-tutorial-iis/