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