发布网友 发布时间:2022-04-06 03:44
共4个回答
热心网友 时间:2022-04-06 05:13
要PHP转跳,就需要用到
PHP header() 函数
定义和用法
header() 函数向客户端发送原始的 HTTP 报头。
认识到一点很重要,即必须在任何实际的输出被发送之前调用 header() 函数(在 PHP 4 以及更高的版本中,您可以使用输出缓存来解决此问题):
<html>
<?php
// 结果出错
// 在调用 header() 之前已存在输出
header('Location: http://www.example.com/');
?>
语法
header(string,replace,http_response_code)
参数
描述
string 必需。规定要发送的报头字符串。
replace
可选。指示该报头是否替换之前的报头,或添加第二个报头。
默认是 true(替换)。false(允许相同类型的多个报头)。
http_response_code 可选。把 HTTP 响应代码强制为指定的值。(PHP 4 以及更高版本可用)
提示和注释
注释:从 PHP 4.4 之后,该函数防止一次发送多个报头。这是对头部注入攻击的保护措施。
例子:
<?php热心网友 时间:2022-04-06 06:31
index.php 文件
<?PHP
header("Location: ./a/test.php\n");
?>
这样就可以了,你直接更改后面的连接就行了。
热心网友 时间:2022-04-06 08:06
header("location:./a/test.htm");
header("location:./b/test.php");
热心网友 时间:2022-04-06 09:57
header ("Location: /a/test.php");