0

考虑在移动用户愿意建立我的页面的正确时机,应该是他们来到该网站,所以它必须是一个盒子,询问用户是在右侧还是在移动网站上,它必须只如果你在手机上就可以这样做,但是如果一个人在他的电脑上就无法做到这一点。

如果您认为您必须在移动页面上,那么您将被踢到 m.mobil.com

如果你想保持正常的一面,你只是 mobil.com,

仅当它是 android、iphone 或 windows phone 时才会这样做

如果您是他的 ipad 或 ipad 等类似手机,则不会这样做。

4

1 回答 1

0

由于您使用的是 PHP,我推荐 Mobile_Detect 类。我工作得很好而且很容易。

https://code.google.com/p/php-mobile-detect/

它几乎可以检测任何移动设备。这可能在您的index.php文件中

示例用法。

 <?php
        // Include and instantiate the class.
        require_once 'Mobile_Detect.php';
        $detect = new Mobile_Detect;

        // Any mobile device (phones or tablets).
        if ( $detect->isMobile() ) {
        //do stuff, redirect or whatever
        }

        // Check if an iphone, ipad etc:
        if( $detect->isiOS() ){
        //do stuff, redirect or whatever
        }
        //check if an Android device
        if( $detect->isAndroidOS() ){
        //do stuff, redirect or whatever
        }

 ?>
于 2013-06-27T23:38:17.973 回答