用PHP重定向Firefox Web浏览器

时间:2015-10-11 05:29:21

标签: php html redirect

如何在PHP中阻止/重定向Web浏览器,我尝试使用此代码,

<?php
$userAgent = $_SERVER['HTTP_USER_AGENT'];
return (stripos($userAgent, 'Firefox') !== FALSE);
?> 

还有其他方法可以将浏览器重定向到另一个页面吗?感谢。

1 个答案:

答案 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;
    }
}