网站搬家域名变更301重定向方法

首先在原域名首页 index.php 中全部替换使用如下代码:

<?php
$url="http://btos.com/".$_SERVER["REQUEST_URI"]; //取得域名地址
header("HTTP/1.1 301 Moved Permanently"); //发出301定向命令请求
header ("Location:http://www.btoss.com/"); //转向新域名地址
?>

实现域名重定向。

下一步是最重要的了,针对搜索引擎的301重定向,在你的页面模版中,添加如下JS代码:

<script language=javascript>
if (document.domain =='btoss.com')  
    this.location = "http://www.btoss.com" + this.location.pathname + this.location.search;
</script>

实现所有文章页面的重定向。

OK,完成了,等待搜索引擎的更新吧。

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

Captcha Code