|
http://www.xxx.coms/bbs/index.php跳到http://bbs.xxx.coms/index.php
- $host= 'bbs.xxx.com'; //填写你要统一的地址
- if ($_SERVER['HTTP_HOST'] != $host) {
- header("HTTP/1.1 301 Moved Permanently");
- $new_request_uri = substr($_SERVER[REQUEST_URI],5);
- header("Location: http://$host/$new_request_uri");
- }
- unset($host);
|