10-03
10
301域名更换
作者:Java伴侣 日期:2010-03-10
<%
url=Request.ServerVariables("QUERY_STRING")
arr=Split(url,"/blog") '用/分割
n=ubound(arr) '求得最后一个/
Response.Status="301 Moved Permanently" '错误状态:301
Response.AddHeader "Location","http://www.yexu8.com"&arr(n)&""
%>
url=Request.ServerVariables("QUERY_STRING")
arr=Split(url,"/blog") '用/分割
n=ubound(arr) '求得最后一个/
Response.Status="301 Moved Permanently" '错误状态:301
Response.AddHeader "Location","http://www.yexu8.com"&arr(n)&""
%>
评论: 0 | 引用: 0 | 查看次数: 242
发表评论