//发出301头部
header('HTTP/1.1 301 Moved Permanently');
//跳转到带www的网址
$re_url = 'http://www.XXX.com/article-index-cid-7-id-'.str_replace("id=","",strstr($the_url,'id=')).'.html';
header('Location:' . $re_url);
exit;
如果跳转后续还有代码要执行,一定要加 exit;
include “文件”; 如果文件不存在,直接警告。
require “文件”; 如果文件不存在,直接报错。