网站换域名了,至于为什么要换不多说了,伤心事!
犹豫了半年,新域名也早买好了,一直没下定决心要换域名,毕竟8年老站,中国网页设计,排名也不错,外链特别多,月收入8000多刀(受惩罚前,受惩罚后半年没管下降太多了)
不多说了,入题,想把域名换成 http://www.125jz.com,不只是做首页跳转,要的是全站跳转,如http://旧域名/show.asp?id=2357这种页面要跳转到 http://www.125jz.com/show.asp?id=2357 页面。
群里,网上问了很多人,查了不少资料,最后搞定,现分享给大家。
在CONN.ASP页面添加如下代码。
<% if request.ServerVariables("HTTP_HOST")="旧域名" Then if Request.ServerVariables("QUERY_STRING")<>"" Then p="?" Response.Status="301 Moved Permanently" Response.AddHeader "Location","http://www.125jz.com"&Request.ServerVariables("SCRIPT_NAME")&p&Request.ServerVariables("QUERY_STRING") Response.End elseif Request.ServerVariables("QUERY_STRING")="" and Request.ServerVariables("SCRIPT_NAME")<>"" and Request.ServerVariables("SCRIPT_NAME")<>"/index.asp" then Response.Status="301 Moved Permanently" Response.AddHeader "Location","http://www.125jz.com"&Request.ServerVariables("SCRIPT_NAME") Response.End else Response.Status="301 Moved Permanently" Response.AddHeader "Location","http://www.125jz.com/" Response.End end if end if %>
更多问题可以加QQ群:208047327 大家一起交流建站经验和心得。
125jz网原创文章。发布者:江山如画,转载请注明出处:http://www.125jz.com/3420.html