- A+
Zblog(asp程序)怎么做301重定向?今天与的大家分享一下zblog用代码实现301重定向的方法。网站有很多实现301重定向的代码,但绝大部分都没明确写出放置的位置,这让很多新手朋友们无从下手,甚至胡乱复制,都没有标明符合的程序和一些错误的。拿沈阳电脑维修这个网站举例,怎么做301重定向,site一下会出现带3w和不带3w的2个域名,导致权重分散,让搜索引擎认识不清楚哪个是主域名。今天把手教给新手朋友zblog实现301重定向的方法。首先我们在文件管理里找到default.asp文件(在网站根目录下)在我给发代码的中间复制红色字体的代码,记住代码中的网站换成自己网站的网址,其他地方不要改动,即可实现不带3w直接跳转到带3w的301重定向。
<!-- #include file="c_option.asp" -->
<!-- #include file="function/c_function.asp" -->
<!-- #include file="function/c_function_md5.asp" -->
<!-- #include file="function/c_system_lib.asp" -->
<!-- #include file="function/c_system_base.asp" -->
<!-- #include file="function/c_system_event.asp" -->
<!-- #include file="function/c_system_plugin.asp" -->
<!-- #include file="plugin/p_config.asp" -->
<%
if request.ServerVariables("SERVER_NAME")="dnhuifu.com" then
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http://www.dnhuifu.com"
Response.End
end if
If (InStr(LCase(Request.ServerVariables("HTTP_ACCEPT")),"text/vnd.wap.wml") > 0) And (InStr(LCase(Request.ServerVariables("HTTP_ACCEPT")),"text/html") = 0) Then Response.Redirect "wap.asp"
做zblog301重定向过程中遇到问题可以与沈阳seo联系
其他asp程序的301跳转代码
加入到主页
<%
Dim dm,sn
dm=Request.ServerVariables("Server_name") '获取域名
'这里的3是指www的长度
if left(dm,3)<>"www" then
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", http://www.zhangjianqun.com
Response.End
end if
%>
- 我的微信
- 这是我的微信扫一扫
- 我的微信公众号
- 我的微信公众号扫一扫
2011年06月28日 8:03 上午 沙发
返利网哪个好,www.27tao.net支持你的文章。www.zloli.com收藏啦
2011年07月20日 3:33 上午 板凳
时值得我学习的哦。。。