重定向一般有三种方式1。html的meta标记
<meta http-equiv=refresh content=0;URL=yufan.php>2。客户端脚本(以JS为例)
<SCRIPT LANGUAGE="JavaScript">
<!--
window.location.href="yufan.php";
//-->
</SCRIPT>3。服务器端脚本(以php为例)
header("location:yufan.php");