View Single Post
  #3   IP: 61.139.126.97
Old 2006-10-15, 01:56 PM
topvip topvip is offline
超级版主
 
Join Date: 2006-01-04
Posts: 1206
topvip 正向着好的方向发展
Default

这是一段很有用的代码,和绑定多域名的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";
}
Reply With Quote