nginx rewrite举例详解

1.标志位,放在每一条规则的最后面

    last : 相当于Apache的[L]标记,表示完成rewrite
    break : 停止执行当前虚拟主机的后续rewrite指令集,一旦匹配不再往后匹配
    redirect : 返回302临时重定向,地址栏会显示跳转后的地址
    permanent : 返回301永久重定向,地址栏会显示跳转后的地址

2.全局变量

全局变量,可以直接在定义的规则中使用,不知道可以查
下面是可以用作if判断的全局变量

    $args : #这个变量等于请求行中的参数,同$query_string
    $content_length : 请求头中的Content-length字段。
    $content_type : 请求头中的Content-Type字段。
    $document_root : 当前请求在root指令中指定的值。
    $host : 请求主机头字段,否则为服务器名称。
    $http_user_agent : 客户端agent信息
    $http_cookie : 客户端cookie信息
    $limit_rate : 这个变量可以限制连接速率。
    $request_method : 客户端请求的动作,通常为GET或POST。
    $remote_addr : 客户端的IP地址。
    $remote_port : 客户端的端口。
    $remote_user : 已经经过Auth Basic Module验证的用户名。
    $request_filename : 当前请求的文件路径,由root或alias指令与URI请求生成。
    $scheme : HTTP方法(如http,https)。
    $server_protocol : 请求使用的协议,通常是HTTP/1.0或HTTP/1.1。
    $server_addr : 服务器地址,在完成一次系统调用后可以确定这个值。
    $server_name : 服务器名称。
    $server_port : 请求到达服务器的端口号。
    $request_uri : 包含请求参数的原始URI,不包含主机名,如:”/foo/bar.php?arg=baz”。
    $uri : 不带请求参数的当前URI,$uri不包含主机名,如”/foo/bar.html”。
    $document_uri : 与$uri相同。

3.可能会用的几个if判断

if判断指令
语法为if(condition){...},对给定的条件condition进行判断。如果为真,大括号内的rewrite指令将被执行.
当表达式只是一个变量时,如果值为空或任何以0开头的字符串都会当做false
直接比较变量和内容时,使用=或!=
~正则表达式匹配,~*不区分大小写的匹配,!~区分大小写的不匹配
-f和!-f用来判断是否存在文件
-d和!-d用来判断是否存在目录
-e和!-e用来判断是否存在文件或目录
-x和!-x用来判断文件是否可执行

4.案例,前面看不懂没事,对着例子看,更容易懂

    server {
        listen       80;
        server_name  www.jd.com;
        access_log  logs/jd.access.log  main;
        if ($host = 'jd.com')
        {
            #将jd.com的所有请求全部转到www.baidu.com,(.*)任意字符串,后面$1对其进行引用,而且使用的是301永久重定向,url显示跳转后的地址 
           rewrite ^/(.*)$ http://www.baidu.com/$1 permanent;
        }
        location / {
            root   html/jd.com;
            index  index.html index.htm;
        }
    }

再来一个

    server {
        listen       80;
        server_name  www.jd.com;
        access_log  logs/jd.access.log  main;
        #301永久重定向  访问本域名将重定向到tao.bao,与上一个的区别是不再引用请求字符串,不管你是请求的什么,都直接跳到taobao下的index.html页面
        rewrite ^/(.*)$ http://www.taobao.com/index.html permanent;  

        location / {
            root   html/jd.com;
            index  index.html index.htm;
        }
    }     

再来一个

    server {
        listen       80;
        server_name  www.jd.com;
        access_log  logs/jd.access.log  main;
       #访问 /test/ 将会被重定向到 /index.html ,且浏览器地址不变
        rewrite ^/test/$ /index.html last;   
        location / {
            root   html/jd.com;
            index  index.html index.htm;
        }
    }        
      

最后一个:文件禁止访问

    server {
        listen       80;
        server_name  www.jd.com;
        access_log  logs/jd.access.log  main;
        location ~ .*\.(txt|db)$   #对.txt,.db结尾的文件不允许访问
        {
            return 403;
        }       
        location / {
            root   html/jd.com;
            index  index.html index.htm;
        }
    }
    原文作者:火车叨位去去
    原文地址: https://www.jianshu.com/p/d74db974678a
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞