location跳转和header跳转的区别

1:header("location:url") 跳转之前不能有任何输出,如果想在header之前有输出,则要修改php.ini文件。具体 output_handler =mb_output_handler 或 output_handler =on

2:header()跳转之后必须有exit;结束,否则将继续执行下面的程序。

  标准的使用方法:

  ob_start();

  if(something){

    ob_clean();

    header("location:url");

    exit;

  }else{

    .......

  }

  ob_flush();

3:如果在牵涉到页面按照页面头信息HTTP_REFERER来统计流量的时候,不能使用header()跳转,因为header()在跳转的过程中HTTP_REFERER在90%以上的主流浏览器会丢失。此时可以使用location.href来替换,来解决流量被统计到的问题!

location跳转和header跳转的区别

上一篇:Android开发在Activity外申请权限调用相机打开相册


下一篇:axios 请求拦截器&&响应拦截器