网站SEO优化必备:常见程序301重定向的做法都有那些?
SEO资讯 2019-04-04 15:30:02 字数:1108

网站SEO优化必备:常见程序301重定向的做法都有那些?


下面简单说在网页当中如何设置 301重定向!

网站SEO优化必备:常见程序301重定向的做法都有那些?

1 asp程序:

dim Url: Url=request.ServerVariables("HTTP_HOST")

if Url="ywlcm.net" then

Response.Status="301 Moved Permanently"

Response.AddHeader "Location","http://www.yswlcm.net"

Response.End

end if

%>

if request.ServerVariables("HTTP_HOST")<>"http://www.yswlcm.net" then

Response.Status="301 Moved Permanently"

Response.AddHeader "Location","http://www.yswlcm.net"

Response.End

end if

%>

2 PHP程序:

$hostdomain=$_SERVER['HTTP_HOST'];

if ($hostdomain != 'www.yswlcm.net') {

header("HTTP/1.1 301 Moved Permanently");

header("location:http://www.yswlcm.net");

exit();

}

?>

3 伪静态 301代码!~

加在 index.php中的

php 后面

$jump301=1;

if(substr($_SERVER['SERVER_NAME'],0,4)!='www.'&&$jump301)

{

header('HTTP/1.1 301 Moved Permanently');

header('Location:http://www.'.$_SERVER['SERVER_NAME']);

exit();

}

4 js跳转代码

if (document.domain !='www.yswlcm.net')

this.location = "http://www.yswlcm.net" + this.location.pathname + this.location.search;

如有盆友看不懂的,可以给我留言哦,相互学习。

0人参与回答
  • 未添加任何数据~~

提示信息

联系电话:
1585150508*
QQ交谈:
小编
站长微信:
站长邮箱: service@qingjiuzhubei.com