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跳转的主要内容,如果未能解决你的问题,请参考以下文章
laravel路由 实现短连接生成及跳转(php 301重定向)