HTML
<meta HTTP-EQUIV="Refresh" CONTENT="0"; URL="index.php"></meta>
PHP
header("Location: index.php");
或
<?php
ob_start();
//html代码
ob_clean(); include("next.php"); ob_end_flush();
?>
JAVASCRIPT
<script>window.location ="index.php"; </script>
HTML
<meta HTTP-EQUIV="Refresh" CONTENT="0"; URL="index.php"></meta>
PHP
header("Location: index.php");
或
<?php
ob_start();
//html代码
ob_clean(); include("next.php"); ob_end_flush();
?>
JAVASCRIPT
<script>window.location ="index.php"; </script>
0 Comments.