首页 > 开发 > PHP > 正文

多个域名绑定一个空间互不影响(PHP)

2024-05-04 23:04:49
字体:
来源:转载
供稿:网友


收集最实用的网页特效代码!

上次发了一个asp多个域名绑定一个空间互不影响 人气旺旺的。http://www.VeVb.com/htmldata/2005-03-21/1111371943.html

$domain_net="abc.com";
$dot_net_url="bbs/";
$dot_com_url="flash";
if(($http_host=="$domain_net")or($http_host=="www.$domain_net"))
{
header("location: $dot_net_url");
}
else
{
header("location: $dot_com_url");
}
?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表