如何在 PHP 中跨多个域维护用户首选项

发布于 2024-10-05 14:40:11 字数 317 浏览 4 评论 0原文

我正在表达式引擎中开发一个多语言网站。我对不同语言版本的网站使用不同的域,例如:www.site.en、www.site.jp 等。

现在我想跟踪访问者的语言偏好,即我想找出访问了哪些域最后由该用户/系统(无用户登录功能)。 假设我访问 www.site.com,然后切换到 www.site.jp 并关闭浏览器。

因此,下次当用户访问这些域中的任何一个时,我想将用户重定向到他上次访问的域(在本例中为 www.site.jp)。

问题是我无法为另一个域设置 cookie。
我也没有用户登录功能。
我也不想使用第三方 cookie,因为它不是可靠的系统。

i am developing a multilingual site in expression engine. and i am using different domains for different languages versions of site eg: www.site.en, www.site.jp, etc.

now i want to track the visitors language preference that is i want to find out which of these domains was visited by that user/system(no user login feature) in the last.
suppose i visit www.site.com and i switch to www.site.jp and close my browser.

so next time when the user visits any of these domains i want to redirect the user to the domain(www.site.jp in this case) he visited last.

The problem is that i can't set a cookie for another domain.
Neither do i have a user login feature.
Nor do i want to user third party cookies coz it won't be reliable system.

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

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

发布评论

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

评论(1

深海少女心 2024-10-12 14:40:11

在将用户重定向到 www.site.jp 之前,您应该在 www.site.com 中设置 cookie。因此,当用户再次访问 www.site.com 时,您的 PHP 脚本中的 cookie 是可读的,并且您可以再次重定向。

如果用户直接访问 www.site.jp,则无需担心,因为该网站已经是日语的。


始终重定向到 www.site.com/setcookie?lang=xx,
在任何域切换之前和 cookie 设置之后,执行必要的重定向

因此,理论上,www.site.com 始终为最后选择的语言保留一个 cookie,您可以使用它重定向到 www.site.xx


而是使用多个域名,使用秒级目录进行分离,例如

www.site.com/en
www.site.com/jp
www.site.com/zh

Right before redirect user to www.site.jp, you should set a cookie in www.site.com. Therefore, when user visit again in www.site.com the cookie is readable in your PHP script, and you can redirect again.

If user visit directly into www.site.jp, you need not to bother that, cause the site is already in Japanese.

OR
always redirect to www.site.com/setcookie?lang=xx,
before any domain switching and right after cookie set, do the necessary redirect

So, in theory, www.site.com always keep a cookie for the last selected language, and you can use that to redirect to www.site.xx

OR
instead using multiple domain name, using seconds level directory for separation, like

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