偶用editplus编辑器跳转:
方法一:
<?
echo "<meta http-equiv='refresh' content='0;url=test.php'>";
exit;
?>
方法二:
<?
Header("Location: test.php");  
exit;
?>

解决方案 »

  1.   

    echo "<Script>";
    echo "location.href='index.php';";
    echo "</Script>";
      

  2.   

    editplus编辑器
    <html>
    <meta http-equiv='refresh' content='0;url=a.htm'>
    </html>
      

  3.   

    editplus 好用我一直用的都是它。
    方法一:header("Location:  index.php");    
     
    方法二:echo  "<script>window.location  =\"$PHP_SELF\";</script>";    
     
    方法三:echo  "<META  HTTP-EQUIV=\"Refresh\"  CONTENT=\"0;  URL=index.php\">";    
     
    方法四:<?php  
    ob_start();  
    ?>  
    html代码  
    <?  
    ob_clean();  
    include("next.php");  
    ob_end_flush();  
    ?>