如何在PHP中阻止/重定向Web浏览器,我尝试使用此代码,
<?php
$userAgent = $_SERVER['HTTP_USER_AGENT'];
return (stripos($userAgent, 'Firefox') !== FALSE);
?>
还有其他方法可以将浏览器重定向到另一个页面吗?感谢。
答案 0 :(得分:2)
您可以测试用户代理,如果是firefox,则重定向......类似
if (isset($_SERVER['HTTP_USER_AGENT'])) {
$agent = $_SERVER['HTTP_USER_AGENT'];
if (strlen(strstr($agent, 'Firefox')) > 0) {
header("Location: http://www.google.com:);
exit;
}
}