https://github.com/serbanghita/Mobile-Detect
composer require mobiledetect/mobiledetectlib
require 'vendor/autoload.php';
$detect = new Mobile_Detect;
if ($detect->isMobile()) {
header('Location: http://m.domain.com/');
}
域名:m.domain.com
require 'vendor/autoload.php';
$detect = new Mobile_Detect;
if (!$detect->isMobile()) {
header('Location: http://www.domain.com/');
}