当前位置:首页 > 行业动态 > 正文

php header 跳转

在PHP中,可以使用 header()函数进行页面跳转。,,“ php,header("Location: http://www.example.com");,

要实现PHP的header跳转,可以使用header()函数。header()函数用于发送原始HTTP报文头部信息给客户端,以下是一个简单的示例:

1、创建一个名为redirect.php的文件,然后在其中添加以下代码:

php header 跳转

<?php
// 设置跳转的目标URL
$target_url = "https://www.example.com";
// 设置跳转延迟时间(单位:秒)
$delay = 3;
// 输出HTML内容,提示用户等待跳转
echo "<html><head><meta httpequiv='refresh' content='{$delay};url={$target_url}'></head><body>正在跳转到 {$target_url},请稍候...</body></html>";
?>

2、将redirect.php文件上传到您的Web服务器,并通过浏览器访问它,您将看到一个提示页面,告诉您将在3秒后跳转到目标URL。

php header 跳转

3、在3秒后,浏览器将自动跳转到https://www.example.com

php header 跳转

注意:在使用header()函数之前,确保没有任何输出(如空格、换行符等),否则会导致错误。