日期:2014-05-17 浏览次数:20484 次
<?php if(isset($_GET['param'])){ header("Location:index.php"); } ?> <a href="link.php?param=123">link</a>
------解决方案--------------------
打比方连接 <a href="test.php?id=5">TEST</a>
//test.php
<?php
$id = @$_GET['id'];
if($id==5)
echo "window.location.href=\"test1.html\"";
else
echo "window.location.href=\"test2.html\"";
?>