HTML PHP JS 实现页面重定向

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>

云端听海

Leave a comment

0 Comments.

Leave a Reply


[ Ctrl + Enter ]