分享你我的心得.
共乘一片美好网络.

二级域名跳转获取变量

今天多亏我同事才把这段代码弄好!

以后怕忘记把这段代码记录下来

<%
if left(replace(replace(Request.ServerVariables("SERVER_NAME"),"http://",""),".3zha.com",""),4)=love then
username=request("username")
response.write username
else
username=replace(replace(Request.ServerVariables("SERVER_NAME"),"http://",""),".3zha.com","")
username=request("username")
end if

if username="" then
response.write("<script>alert(‘您查看的用户不存在或已删除!’);self.location=’./../’;</script>")
else
sql="select * from user where username=’"&username&"’"
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.Write("<script language=javascript>alert(‘您查看的用户不存在或已删除!’);self.location=’./../’;</script>")
response.End()
end if
end if
%>

说明

2个地址:一个是http://jz1024.3zha.com
一个是http://love.3zha.com/index.asp?username=jz1024

这样love代表许愿墙二级名称

如果许愿墙客户名为jz1024.3zha.com

获取变量jz1024

2个地址都有jz1024

无论访问那个都能访问数据

所以在街区的时候分别做了判断

不等于love是因为判断不是二级域名love.3zha.com的时候才判断二级域名jz1024.3zha.com

 

赞(0)
未经允许不得转载:小叶白龙博客 » 二级域名跳转获取变量
分享到: 更多 (0)

评论 993

评论前必须登录!