php指定网址跳转代码实例_PHP教程
程序员文章站
2022-03-13 21:16:37
...
$s = $_SERVER['QUERY_STRING'];
if ($s == "http://www.baidu.com");
{
$s = "http://www.qq.com";
}
if ($s == "http://www.hao123.com");
{
$s = "http://www.bkjia.com";
}
header("Location:".$s."");
?>
上一篇: web目录下不应该存在多余的程序(安全考虑)_php技巧
下一篇: PHP调试之ChromePHP