发布网友 发布时间:2022-04-29 21:14
共1个回答
热心网友 时间:2022-06-22 23:10
<?php switch ($_SERVER["HTTP_HOST"]) { case "abc.com": header("location:un/abc.html"); break; case "123.com": header("location:un/123.html"); break; } ?> 上面这个就是代码,保存为index.php就可以了,其中的页面你可以自己加上去和修改的! 如果需要增加就在两个大括号中间插入 case "domian.com": header("location:un/123.html"); break; un表示的是根目录,可以替换成子目录的!希望对你有帮助