我正在使用Mobile_Detect PHP脚本来检测不同类型的设备。但是,当我尝试重定向时,它仅在XAMMP本地托管时才有效。但是当托管在000webhost上时,脚本不会重定向 这是脚本正在使用
<?php
require 'Mobile_Detect.php';
$detect = new Mobile_Detect;
$deviceType = ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'phone') : 'computer');
?>
<div class="title" style="text-align: center;">Your device is <span style="text-decoration: underline; font-style: italic;">
<?php
echo $deviceType;
if($deviceType=='computer')
{
header('location:https://google.com');
}
else
{
header('location:https://youtube.com');
}
?>
实际上,检测设备没有问题,问题在于重定向。 请帮助我