【问题标题】:How to make domain change on mobile?如何在手机上更改域名?
【发布时间】:2021-03-09 00:20:12
【问题描述】:

我的问题是,我怎样才能做到当有人通过手机进入一个域时,他们会被定向到另一个域。 以 Twitter 为例,如果我们在手机的浏览器中输入 https://twitter.com,它会自动定向到 https://mobile.twitter.com

【问题讨论】:

  • 你试过什么?您使用什么软件或服务来托管?您想通过 javascript 还是在该软件中执行此操作。

标签: javascript html web mobile


【解决方案1】:

在 vanilla JS 中,只需在 DOM 加载事件之后进行条件检查。

if( /Android|webOS|iPhone|iPad|Mac|Macintosh|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
    window.location.replace('mobileurl');
    /// or window.location.href = 'mobileurl';
}

【讨论】:

    猜你喜欢
    • 2011-09-15
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-11-16
    • 2019-03-31
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多