php中的网页重定向
——爆米花
在php中进行网页重定向一共有三种方法:
1。利用header()重定向
<?
header("location: $url");
exit;
?>
2。用嵌入html的<meta>标识重定向
<meta http-equiv="refresh" content="5; url=<? echo $url;?>>
3、用嵌入javascript的重定向
<?
echo "<!--<script language="javascript">";
echo "location.href='$url'";
echo "</script>-->";
?>
新闻热点
疑难解答