php指定网址跳转代码实例_PHP教程
程序员文章站
2022-04-18 22:41:09
...
$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."");
?>
上一篇: 简单的PHP日历算法