重定向从桌面访问移动网站的用户

时间:2017-08-09 08:25:12

标签: wordpress redirect mobile desktop

我使用Wordpress创建了2个不同的网站,一个用于移动,一个用于桌面!我使用了一个名为等效移动重定向的插件,以便在移动用户访问桌面时将其重定向到移动网站!现在我需要这样做,反之亦然,我似乎找不到有效的方法!有什么想法吗?

2 个答案:

答案 0 :(得分:2)

您可以查看javascript:

var isMobile = {
    Android: function() {
        return navigator.userAgent.match(/Android/i);
    },
    BlackBerry: function() {
        return navigator.userAgent.match(/BlackBerry/i);
    },
    iOS: function() {
        return navigator.userAgent.match(/iPhone|iPad|iPod/i);
    },
    Opera: function() {
        return navigator.userAgent.match(/Opera Mini/i);
    },
    Windows: function() {
        return navigator.userAgent.match(/IEMobile/i);
    },
    any: function() {
        return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
    }
};

if(isMobile.any()){
    // Mobile!
} else {
    // Desktop
}

答案 1 :(得分:1)

如果您不想使用Javascript,请查看此代码。如果访问者在桌面浏览器上,您可以使用WordPress检测移动功能进行重定向。

if(!wp_is_mobile()){
    // If not using mobile
    wp_redirect( "https://your_desktop_site.com");
    exit;
}

您可以将此代码添加到主题的functions.php文件中,它可以正常工作。