- 最后登录
- 2025-4-30
- 注册时间
- 2011-9-6
- 阅读权限
- 200
- 积分
- 16007
- 真实姓名
- 二亩地
|
- <%
- Dim thishttpUrl
- thishttpUrl=Request.ServerVariables("HTTP_HOST")'网址
- if thishttpUrl="ermudi.cn" then '注意把abc123.com换为您实际的网址。
- Response.Status="301 Moved Permanently"
- Response.AddHeader "Location", "http://www.ermudi.cn/"
- end if
- %>
复制代码- <%
- currentdomain=request.ServerVariables("SERVER_NAME")
- if currentdomain="ermudi.cn" Then
- Response.Status="301 Moved Permanently"
- Response.AddHeader "Location" , "http://www.ermudi.cn/"
- End if
- %>
复制代码
|
|