当某种原因网站不得不更换域名的时候,又想让网站用户找到你的新网址,和想把原网站上的pr转移给新网址,301重定向完全能够做到跳转并在转移流量的同时转移pr。做301重定向对搜索引擎也是种很友好的seo手法。下面我用通过php header()函数设置301重定向。
<?php header('HTTP/1.1 301 Moved Permanently'); header('Location: http://www.100sucai.com'); ?>
这样再检测http返回状态的时候就会返回 301 了.
未经允许不得转载:外贸商城系统,外贸网站模板,php建站教程,zencart模板 » php使用header函数设置301重定向跳转代码例子