您的位置:WenRou's Blog >分享> 多个域名指向同一空间不同目录,文件(js.jsp.php.asp)
多个域名指向同一空间不同目录,文件(js.jsp.php.asp)
<span style="color: red;">附注:经过本人测试 js可以实现这个功能,而又asp和php均没有成功!!!</span>
JS实现多域名同一空间不同目录的代码:
<script>// <![CDATA[
url=window.location.href
if(url.indexOf("happy01.cn")!=-1)
location="movie"
if(url.indexOf("cothurn.com")!=-1)
location="blog"
if(url.indexOf("wenrou.cn")!=-1)
location="index.html"
// ]]></script>
php实现多域名同一空间不同目录的代码:
<!--p<br-->$domain1="wenrou.cn";
$domain2="happy01.cn";
$domain3="cothurn.com";
$dot1="index.html";
$dot2="movie";
$dot3="blog";
if(($HTTP_HOST=="$domain1")or($HTTP_HOST=="www.$domain1"))
{
Header("Location: $dot1");
}
elseif(($HTTP_HOST=="$domain2")or($HTTP_HOST=="www.$domain2"))
{
Header("Location: $dot2");
}
else(($HTTP_HOST=="$domain3")or($HTTP_HOST=="www.$domain3"))
{
Header("Location: $dot3");
}
?>
JSP实现多域名同一空间不同目录的代码:
<script type="text/javascript">// <![CDATA[
try { if( self.location == "http://www.wenrou.cn/" ) {
top.location.href = "http://www.wenrou.cn/index.html";
}
else if( self.location == "http://www.happy01.cn/" ) {
top.location.href = "http://www.happy01.cn/movie";
}
else if( self.location == "http://www.cothurn.com/" ) {
top.location.href = "http://www.cothurn.com/blog";
}
else { document.write ("404.html") } } catch(e) { }
// ]]></script>
ASP实现多域名同一空间不同目录的代码:
解决方案一(case)
<!--r /> host=lcase(request.servervariables("HTTP_HOST"))
Select CASE host
CASE "www.wenrou.cn"
response.redirect"index.html"
CASE "wenrou.cn"
response.redirect"index.html"
CASE "www.happy01.cn"
response.redirect"movie/"
CASE "happy01.cn"
response.redirect"movie/"
CASE "www.cothurn.com"
response.redirect"blog/"
CASE "cothurn.com"
response.redirect"blog/"
CASEELSE
response.redirect"404.html"
END Select
-->
解决方案二(if)
<!-- Request.ServerVariables("SERVER_NAME")="www.wenrou.cn" then
response.redirect "index.html"
elseif Request.ServerVariables("SERVER_NAME")="www.happy01.cn"
response.redirect "movie"
else Request.ServerVariables("SERVER_NAME")="www.cothurn.com"
response.redirect "blog"
end i-->
解决方案三(Transfer)完全隐藏式,这个很好
<!--r /> select case request.servervariables("http_host")
case "www.wenrou.cn" '1
Server.Transfer("index.html")
case "www.happy01.cn" '2
Server.Transfer("movie")
case "www.cothurn.com" '3
Server.Transfer("blog")
end select
-->
解决方案四(instr)
<!-- instr(Request.ServerVariables
("SERVER_NAME"),"wenrou.cn")>0 then
response.redirect "index.html"
elseif instr(Request.ServerVariables
("SERVER_NAME"),"happy01.cn")>0 then
response.redirect "movie"
else instr(Request.ServerVariables
("SERVER_NAME"),"cothurn.com")>0 then
response.redirect "blog"
end if
-->
单空间多域名转向目录代码javascript
发布时间:2009-4-5 | 浏览次数:644
为了方便站长实现网站多域名功能。从而实现一个虚拟主机空间里的网站栏目增加二级域名或一级域名功能。也可以为一些小型企业建站服务单位降低空间成本,实现一个虚拟主机空间多个网站的功能,而有互不影响,现将代码提供如下:
首先,将域名解析做好,要与你挂目录的空间一致才行,如果服务器上有多个网站,是通过主机头指向的,那么你要将你放目录的网站主机头设为默认,然后在你放目录的主机头的首页文件加入下面代码的任何一种,就可以了。
第一个
程序代码
<!--r /> if Request.ServerVariables("SERVER_NAME")="www.dlstu.cn" then
response.redirect "/bbs/"
else
response.redirect "/blog/"
end if
-->
第二个
程序代码
<!--r /> select case request.servervariables("http_host")
case "www.dlstu.cn"
Server.Transfer("/bbs/")
case "bbs.dlstu.cn"
Server.Transfer("/bbs/")
case "blog.dlstu.cn"
Server.Transfer("/blog/")
...... 继续添加 ......
end select
-->
第三个
程序代码
<!--r /> if instr(Request.ServerVariables("SERVER_NAME"),"dlstu.cn")>0 then
response.redirect "/bbs/"
elseif instr(Request.ServerVariables("SERVER_NAME"),"dlstu.com")>0 then
response.redirect "/bbs/"
elseif instr(Request.ServerVariables("SERVER_NAME"),"h11.cn")>0 then
response.redirect "bbs/"
end if
-->
第四个
程序代码
<!--r /> if Request.ServerVariables("SERVER_NAME")="www.dlstu.cn" then
response.redirect "/bbs/index.asp"
elseif Request.ServerVariables("SERVER_NAME")="www.dlstu.com" then
response.redirect "/bbs/index.asp"
elseif Request.ServerVariables("SERVER_NAME")="bbs.163.com" then
response.redirect "/bbs/index.asp"
end if
-->
第五个
程序代码
<!--r /> '取得HTTP输入的值并付值到HTOST中
dim host
host=lcase(request.servervariables("HTTP_HOST"))
‘开始条件跳转
Select CASE host
' 如果HOST的值是www.dlstu.cn就选择事件case www.dlstu.cn的命令
CASE www.dlstu.cn
'直接跳转
response.redirect "/bbs/"
CASE www.dlstu.com
response.redirect "/blog/"
'其它域名跳转
CASE ELSE
response.redirect "/blog/"
END Select
-->
第六个
程序代码
<!--r /> from=lcase(Request.ServerVariables("HTTP_HOST"))
if left(from,4)="www." then
Response.redirect("index.asp") '此处为网站首页地址
else
response.Write( "/bbs/")
end if
-->
这个呢~~也是支持多域名绑定的,非主机头绑定,当然,也是某个域名泛解析到服务器最好的选择:)Oblog用的就是这种跳转。
第七个
用JS实现泛玉米解析
location对象有以下几个属性:
hash 设置或获取 href 属性中在井号“#”后面的分段。
host 设置或获取 location 或 URL 的 hostname 和 port 号码。
hostname 设置或获取 location 或 URL 的主机名称部分。
href 设置或获取整个 URL 为字符串。
pathname 设置或获取对象指定的文件名或路径。
port 设置或获取与 URL 关联的端口号码。
protocol 设置或获取 URL 的协议部分。
search 设置或获取 href 属性中跟在问号后面的部分。
因此。我们就可以根据玉米的不同实现跳转不同的目录,具体代码:
程序代码
<script>// <![CDATA[
switch (window.location.hostname) {
case "test" ://确定玉米为TEST
window.location.pathname="1"//跳转到1目录
break;
case "127.0.0.1" ://确定玉米为127.0.0.1
window.location.pathname="2"//跳转到2目录
break;
//依次类推写下去
default ://如果没有找到该玉米
window.location.pathname="3"//跳转到3目录
}
// ]]></script>
不支持泛解析虚拟主机绑定多域名的ASP代码
如果有有一个ASP空间,而你又想放置多个多个站点或DOMAIN,这些代码可以帮到你
第一个
<!-- Request.ServerVariables("SERVER_NAME")="www.netbei.com" then
response.redirect "zkj"
else
response.redirect "i.htm"
end i-->
第二个
<!--r /> select case request.servervariables("http_host")
case "www.netbei.com"
Server.Transfer("v3.htm")
case "www.aspcn.net" '2
Server.Transfer("i.htm")
case "www.netbei.cn" '3
Server.Transfer("netbei.htm")
'...... 继续添加 ......
end select
-->
第三个
<!-- instr(Request.ServerVariables
("SERVER_NAME"),"kekexi.com")>0 then 6
response.redirect "index.asp"
else if instr(Request.ServerVariables
("SERVER_NAME"),"4668.com")>0
response.redirect "x/index.asp"
else if instr(Request.ServerVariables
("SERVER_NAME"),"web315.com")>0 thenr
esponse.redirect "index3.asp"
end if
end if
end i-->
第四个
<!-- Request.ServerVariables("SERVER_NAME")="www.netbei.com" then
response.redirect "index1.asp"
else if Request.ServerVariables("SERVER_NAME")="www.cike.org" then
response.redirect "index2.asp"
else if Request.ServerVariables("SERVER_NAME")="www.163.com" then
response.redirect "index3.asp"
end if
end if
end i-->
第二种方法:
<!--r /> dim domainname,result
domainname=Request.ServerVariables("SERVER_NAME")
result=right(domainname,12)
if result="my.netbei.com" then
-->
<!--#include file=mynetbei.asp -->
<!--r /> Elseif result="rtisancn.com" then
-->
<!--#include file=artisan.asp -->
<!--r /> Elseif result="gn.netbei.com" then
-->
<!--#include file=web.asp -->
<!--r /> Elseif result=".forwest.com" then
-->
<!--#include file=forwest_com.asp -->
<!--r /> Else
-->
<!--#include file=netbei.asp -->
<!--r /> End if
--> ---
转载请注明本文标题和链接:《多个域名指向同一空间不同目录,文件(js.jsp.php.asp)》
发表评论