将用户跳至移动网站,但仍允许“完整网站”看法

发布于 2024-10-26 15:20:11 字数 195 浏览 3 评论 0原文

这是我想要的场景:

用户访问网站 site.com,元标记检测到用户使用移动设备,并将用户跳转到 m.site.com。然后,用户会看到“查看完整站点”的链接并单击它。

但随后,该网站再次将用户退回。

有没有一种干净的方法来处理这个问题?允许用户选择他/她想要查看的版本,但默认情况下,首先访问移动网站?

谢谢!

This is scenario I'm going for:

User visits the site, site.com, meta tag detects that the user is on a mobile device, and bounces the user over to m.site.com. Then, the user sees a link for "View full site," and clicks on it.

But then, the site bounces the user over again.

Is there a clean way of handling this? Allowing the user to choose which version he/she wants to see, but by default, first going to the mobile site?

Thanks!

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

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

发布评论

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

评论(1

柳絮泡泡 2024-11-02 15:20:11

我能想到的方法有很多。

    1. 您可以有一个用户访问的参数/页面。例如,谷歌有/ncr(无国家/地区重定向)。当用户访问此特定页面时,您可以设置一个会话/cookie,可以对其进行监视以防止重定向。
      - 仅当未检测到特定 cookie 并且用户使用移动用户代理时,您才能重定向用户。
    1. 除了用户代理之外,您还可以检查引荐来源网址,如果引荐来源网址来自 m.site.com,则不要重定向。

Tonnes of ways I can thing of.

    1. You could have a parameters/page which the user visits. For example google have /ncr (no country redirect). When the user visits this particular page you could set a session/cookie which can be monitored to prevent redirection.
      -You could only redirect the user if a particular cookie is not detected, and they are using a mobile user-agent.
    1. You could check the referer in addition to the user-agent, and if the referer has come from m.site.com then don't redirect.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文