<?
header("HTTP/1.1 301 Moved Permanently");
//参数设置
$qz="article";  //跳转的文件名前缀,方便自定义
$tzurl="/huanbaojiaocheng/";  //没参数时候的跳转地址

//参数设置end

$act=$_GET[act];
$id=$_GET[id];
if($act && $id){
  $tzurl="/".$qz."-".$act."-".$id.".html";
  header("Location:$tzurl");
} else {
  header("Location:$tzurl");
}

?>