码迷,mamicode.com
首页 > Web开发 > 详细

PHP实现301跳转

时间:2016-04-02 09:34:29      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

PHP实现301跳转的方法:

$theHost = $_SERVER[HTTP_HOST];
$theUrl = isset($_SERVER[REQUEST_URI])? $_SERVER[REQUEST_URI]:‘‘;
$theUrl = strtolower($theUrl);
if($theUrl == /index.php)
{
  $theUrl = ‘‘;
}
if($theHost != www.test.com)
{
  header(HTTP/1.1 301 Moved Permanently);
  header(Location:http://www.test.com.$the_url);
}

将此代码放在*.php首行,或者放置在config.php中。

PHP实现301跳转

标签:

原文地址:http://www.cnblogs.com/izhengyang/p/5346914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!