多个绑定多域名的PHP代码 ,这是一段很有用的代码,和绑定多域名的ASP代码类似,如果你只有一个PHP空间,而你又想放置多个多个站点,下面这些代码可以帮到你。
第一个:
if($HTTP_HOST=="www.billionnet.net"){
Header("Location: moon.htm");
}
elseif($HTTP_HOST=="www.billionnet.net"){
Header("Location: billionnet.htm");
}
else{
Header("Location: other.htm");
}
第二个:
if($HTTP_HOST=="www.billionnet.net"){
require "moon.htm";
}
elseif($HTTP_HOST=="www.billionnet.net"){
require "billionnet.htm";
}
else{
require "other.htm";
}