首页 >

多中语言实现判断客户访问用得是那个域名 然后转到对应的目录

web前端|css教程多中语言实现判断客户访问用得是那个域名 然后转到对应的目录
多中语言实现判断客户访问用得是那个域名,然后转到对应的目录
web前端-css教程
多中语言实现判断客户访问用得是那个域名 然后转到对应的目录
asp版:
网游代源码,vscode将项目打包,ubuntu快捷复制,win系统tomcat漏洞,sqlite3数据库事务,政府工作报告网网络爬虫实验,php ssh 连接,南京seo推广公司费用,视频网站引流,discuz 家园模板lzw
发表多个绑定多域名的ASP代码
html游戏源码,vscode设置默认文件夹,ubuntu开源面板,tomcat首页怎么创建,爬虫窃密事件,php替换文本,信息seo优化市场规模,微网站上下滑动lzw
如果有有一个ASP空间,而你又想放置多个多个站点,这些代码可以帮到你
第一个
<%if Request.ServerVariables("SERVER_NAME")="bbs.along.com.ru" then
response.redirect “bbs”
else
response.redirect “index1.htm”
end if%>
php三端合一网站源码,vscode怎么写程序,ubuntu备份 vm,linux默认tomcat,SQLite的主要应用案例,各前端框架的优点及注意事项,不会编程可以学爬虫吗,php 在线预览word,哈尔滨纯手工seo,手机html5网站模板,付费下载网页特效,网站维护提示页面模板lzw
第二个
<%
select case request.servervariables(“http_host”)
case “www.along.com.ru” ‘1
Server.Transfer(“along.htm”)
case “www.along.net.ru” ‘2
Server.Transfer(“net.htm”)
case “www.null.com.ru” ‘3
Server.Transfer(“null.htm”)
…… 继续添加 ……
end select
%>

第三个
<%if instr(Request.ServerVariables
(“SERVER_NAME”),”fjsky.info”)>0 then
response.redirect “index.asp”
else if instr(Request.ServerVariables
(“SERVER_NAME”),”along.com.ru”)>0 then
response.redirect “x/index.asp”
else if instr(Request.ServerVariables
(“SERVER_NAME”),”along.net.ru”)>0 thenr
esponse.redirect “index3.asp”
end if
end if
end if%>

第四个
<%if Request.ServerVariables("SERVER_NAME")="www.fjsky.info" then
response.redirect “main1.asp”
else if Request.ServerVariables(“SERVER_NAME”)=”fjsky.info” then
response.redirect “main1.asp”
else if Request.ServerVariables(“SERVER_NAME”)=”www.null2.com.ru” then
response.redirect “/web/index.asp”
else if Request.ServerVariables(“SERVER_NAME”)=”null2.com.ru” then
response.redirect “/web/index.asp”
end if
end if
end if
end if%>

第五个
<%
‘取得HTTP输入的值并付值到HTOST中
host=lcase(request.servervariables(“HTTP_HOST”))
‘开始条件跳转
SELECT CASE host
‘ 如果HOST的值是www.iswind.net就选择事件case”www.iswind.net”的命令
CASE “www.abc.net”
‘ Below is the redirect command
response.redirect “web/”
CASE “www.efd.com”
response.redirect “web1/”
‘We use CASE ELSE to fix any other requests
CASE ELSE
response.redirect “web1/”
END SELECT
%>

js版:
try
{ if( self.location == “http://玉米一/” )
{
top.location.href = “http://玉米一/目录”;
}
else if( self.location == “http://玉米二/” )
{
top.location.href = “http://玉米二/目录”;
}
else if( self.location == “http://玉米三/” )
{
top.location.href = “http://玉米三/目录”;
}
else if( self.location == “http://玉米四/” )
{
top.location.href = “http://玉米四/目录”;
}
else
{ document.write (“错误的访问地址”) }
}
catch(e) { }

case “domain.com”:
header(“location:blog”);
break;
default:
header(“location:news”);
break;
}
?>

或者

<?php
$domain_net=”yeahe.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”);
}
?>


  • 暂无相关文章
  • Posted in 未分类