• http协议 301和302的原理及实现


    一、来看看官方的说法:

      301,302 都是HTTP状态的编码,都代表着某个URL发生了转移,不同之处在于: 
      301 redirect: 301 代表永久性转移(Permanently Moved)。
      302 redirect: 302 代表暂时性转移(Temporarily Moved )。

    其实301、302的重定向都是通过对http协议的location的修改来实现的,那具体的怎么去修改location来实现重定向呢?

    1.通过php的header函数去实现这个请求

    <?php
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: http://www.baidu.com/");
    ?>

    如图:

      

    如果写成下面这样,就是302了,与上图对比一下

    <?php
    header("Location: http://www.baidu.com/");
    ?>

    如图:

      

    也就是说,如果你在header函数内不标明的话,默认是302

    重定向的原理:就是对http报文的location的修改(一般我们都是去web服务器上面做重定向操作的)

    nginx有一个location指令,它可以修改http报文的location

    咱们先看一张静态页面访问如图:

      

      这里显示200,并没有出现location标签和信息,此时我们可以在nginx中加入这么一句话(设置301的方法):

          location ~ .html$ {
                   rewrite ^(.*).html$ $1.php permanent;
           }

      

      下面是设置302的方法:

        location ~ .html$ {
                   rewrite ^(.*).html$ $1.php redirect;
        }

      

  • 相关阅读:
    笔记——文档在线阅读的解决方案(未完待续)
    杂记之web篇
    对针对接口编程的理解
    汇编笔记之 ret 、retf和call
    electron桌面应用
    wepack打包时出错不压缩代码及使用es7(async await)新语法问题
    npm install 时发生错误
    create-react-app 后使用babel/polyfill
    webpack3.x--react,jsx多页配置
    webpack--打包scss
  • 原文地址:https://www.cnblogs.com/zengguowang/p/5737002.html
Copyright © 2020-2023  润新知