首页 > 开发 > PHP > 正文

header() 301重定向实现代码

2024-05-04 21:59:22
字体:
来源:转载
供稿:网友

先来看一个实例:header('location: http://www.Vevb.com/');上面是简单的调跳,我们要做永久转向怎么做呢,如下.

语法:header(string,replace,http_response_code)

参数 描述

string 必需,规定要发送的报头字符串.

replace 可选,指示该报头是否替换之前的报头,或添加第二个报头.

默认是 true(替换),false(允许相同类型的多个报头).

http_response_code 可选,把 http 响应代码强制为指定的值,php 4 以及更高版本可用,其它中 http_response_code 就是我们要写的301代码了,如下:

  1. $url = "http://www.Vevb.com"
  2. header("http/1.1 301 moved permanently"); 
  3. header("location: $url"); 
  4. exit(); 

注释:从 php 4.4 之后,该函数防止一次发送多个报头,这是对头部注入攻击的保护措施.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表