<body>
<p>We hope to see you again..</p>
<?php header('Location: http://something/com'); ?>
</body>
怎么来的?我从 w3school 复制语法
<body>
<p>We hope to see you again..</p>
<?php header('Location: http://something/com'); ?>
</body>
怎么来的?我从 w3school 复制语法
header() 必须在发送任何实际输出之前调用,无论是通过普通 HTML 标记、文件中的空白行还是从 PHP 发送。使用 include 或 require 函数或其他文件访问函数读取代码并在调用 header() 之前输出空格或空行是一个非常常见的错误。使用单个 PHP/HTML 文件时也存在同样的问题。
你可以这样做:
<?php
$message = "We hope to see you again..";
header('Location: http://something/com?msg='.$message);
exit;
?>
并在重定向页面回显中显示您的消息$_GET['msg'];
和 heder() 函数之前没有空格。标头在任何输出之前。
您需要输入该页面的代码统计信息
喜欢
<?php
header("Location: http://www.example.com/"); /* Redirect browser */
/* Make sure that code below does not get executed when we redirect. */
exit;
?>