PHP实现301跳转

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP实现301跳转相关的知识,希望对你有一定的参考价值。

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跳转的主要内容,如果未能解决你的问题,请参考以下文章

PHP实现301跳转

laravel路由 实现短连接生成及跳转(php 301重定向)

php 网页 301 跳转

php PHP函数:CURL抓取网站内容的,支持301 302跳转

如何使Javascript文件301重定向?

Nginx配置有条件的301跳转的方法