当前位置:Gxlcms > PHP教程 > 同一空间绑定多个域名而实现访问不同页面的PHP代码_php技巧

同一空间绑定多个域名而实现访问不同页面的PHP代码_php技巧

时间:2021-07-01 10:21:17 帮助过:25人阅读

switch ($_SERVER["HTTP_HOST"]) {
case "www1.aspcn.net":
header("location:index1.htm");
break;
case "www2.aspcn.net":
header("location:index2.htm");
break;
case "www3.aspcn.net":
header("location:index3.htm");
...... 继续添加 ......
break;
}
?>

人气教程排行