不同域名跳转
<?php
switch ($_SERVER["HTTP_HOST"]) {
/*访问此域名时跳转至nj*/
case "whbi.net":
header("location:/nj/");
break;
/*访问此域名时跳转至nj*/
case "www.whbi.net":
header("location:/nj/");
break;
case "test.whbi.net":
header("location:index3.htm");
break;
}
?>
单独页面跳转
<?php
header('location:/web/index.php');
//首页跳转
?>