asp,asp.net,php,jsp下的301转向代码

2013 年 4 月 23 日5020

做网站的朋友偶尔会用到301转向,所以脚本之家站长特整理asp,asp.,php,jsp下的301转向代码使用.htaccess文件来进行301重定向,请见我的另外一篇文章《301重定向,域名更换后跳转到新域名》

如果空间不支持.htaccess文件,那么我们还可以通过phpasp代码来进行301重定向。

为了将搜索引擎的记录更新到现在的域名上面,做了几个301重定向的东东,给大家分享一下.

asp301转向代码

在index.asp或default.asp的最顶部加入以下几行:

复制代码代码如下:

<%

Response.Status=;301MovedPermanently;

Response.AddHeader;Location;,;:daochuyerm.;

Response.End

%>

php301转向代码

在index.php的最顶部加入以下几行:

复制代码代码如下:

<?php

header(;1.1301MovedPermanently;);

header(;Location::daochuyerm.;);

exit();

?>

asp.301转向代码

复制代码代码如下:

<%@PageLanguage=;C#;%>

<scriptrunat=;server;>

protectedvoidPage_Load(objectsender,EventArgse)

{

Context.Current.Response.StatusCode=301;

Context.Current.Response.Status=;301MovedPermanently;;

Context.Current.Response.AddHeader(;Location;,;:daochuyerm.;);

}

<script>

301代表永久性转移(PermanentlyMoved),301重定向是网页更改地址后对搜索引擎友好的最好方法,只

要不是暂时搬移的情况,都建议使用301来做转址。

JSP下的301重定向

复制代码代码如下:

<%@pagelanguage=;java;pageEncoding=;GBK;%>

<%

response.setStatus(response.SC_MOVED_PERMANENTLY);

response.addHeader(;Location;,;:daochuyerm.;);

%>

可以通过filter控制需要重向的路径或页面

文章来源于婚姻算命最准的网站http://http://www.zjjv.com///hunyin/ bib

0 0