nginx配置指令rewrite的last、break、redirect、permanent参数详解

配置示例

注:示例中使用了echo模块,这样可以直接看到响应的内容,以及变量修改情况

server {
    listen       80;
    server_name  example.com;
    set $flag    "org";

    location /noflag/ {
        set $flag "noflag";
        rewrite ^/noflag/(.*) /test/$1?capture=$1;
        set $flag "rewrite noflag";
        echo flag=[$flag];
        echo "noflag page";
        echo request=[$request];
        echo request_uri=[$request_uri];
        echo uri=[$uri] args=[$args];
        echo document_uri=[$document_uri] query_string=[$query_string];
    }

    location /last/ {
        set $flag "last";
        rewrite ^/last/(.*) /test/$1?capture=$1 last;
        set $flag "rewrite last";
        echo flag=[$flag];
        echo "last page";
        echo request=[$request];
        echo request_uri=[$request_uri];
        echo uri=[$uri] args=[$args];
        echo document_uri=[$document_uri] query_string=[$query_string];
    }

    location /break/ {
        set $flag "break";
        rewrite ^/break/(.*) /test/$1?capture=$1 break;
        set $flag "rewrite break";
        echo flag=[$flag];
        echo "break page";
        echo request=[$request];
        echo request_uri=[$request_uri];
        echo uri=[$uri] args=[$args];
        echo document_uri=[$document_uri] query_string=[$query_string];
    }

    location /break_set/ {
        set $flag "break_set";
        rewrite ^/break_set/(.*) /test/$1?capture=$1 break;
        set $flag "rewrite break_set";
        echo flag=[$flag];
    }

    location /html/ {
        rewrite ^/html/(.*) /test/$1?capture=$1 break;
    }
    
    location /redirect/ {
        set $flag "redirect";
        rewrite ^/redirect/(.*) /test/$1?capture=$1 redirect;
        set $flag "rewrite redirect";
        echo flag=[$flag];
        echo "redirect page";
        echo request=[$request];
        echo request_uri=[$request_uri];
        echo uri=[$uri] args=[$args];
        echo document_uri=[$document_uri] query_string=[$query_string];
    }

    location /permanent/ {
        set $flag "permanent";
        rewrite ^/permanent/(.*) /test/$1?capture=$1 permanent;
        set $flag "rewrite permanent";
        echo flag=[$flag];
        echo "permanent page";
        echo request=[$request];
        echo request_uri=[$request_uri];
        echo uri=[$uri] args=[$args];
        echo document_uri=[$document_uri] query_string=[$query_string];
    }

    location /test/ {
        echo flag=[$flag];
        echo "test page";
        echo request=[$request];
        echo request_uri=[$request_uri];
        echo uri=[$uri] args=[$args];
        echo document_uri=[$document_uri] query_string=[$query_string];
    }

    location / {
        echo flag=[$flag];
        echo "location /";
        echo request=[$request];
        echo request_uri=[$request_uri];
        echo uri=[$uri] args=[$args];
        echo document_uri=[$document_uri] query_string=[$query_string];
    }
}

请求演示

●无标志
请求URL:http://example.com/noflag/a.html?key=value
结果:
flag=[rewrite noflag]
test page
request=[GET /noflag/a.html?key=value HTTP/1.1]
request_uri=[/noflag/a.html?key=value]
uri=[/test/a.html] args=[capture=a.html&key=value]
document_uri=[/test/a.html] query_string=[capture=a.html&key=value]
说明:

  1. 将原始请求/noflag/a.html?key=value重写为/test/a.html?capture=a.html&key=value
  2. 执行了后续的ngx_http_rewrite_module模块的指令set,将flag修改为rewrite noflag
  3. 没有执行后续的echo指令,而是发起了内部请求。新的请求匹配了location /test/,该location返回了响应。
  4. rewrite指令改变了变量$uri($document_uri)、$args($query_string),但不会改变$request、$request_uri,这些变量可以输出到access log中。
  5. nginx access log生成1条日志

●last
请求URL:http://example.com/last/a.html?key=value
结果:
flag=[last]
test page
request=[GET /last/a.html?key=value HTTP/1.1]
request_uri=[/last/a.html?key=value]
uri=[/test/a.html] args=[capture=a.html&key=value]
document_uri=[/test/a.html] query_string=[capture=a.html&key=value]
说明:

  1. 将原始请求/last/a.html?key=value重写为/test/a.html?capture=a.html&key=value
  2. 不再执行后续的rewrite 模块指令,没有修改flag的值。这是last标志和不加标志的区别。
  3. 没有执行后续的echo指令,而是发起了内部请求。新的请求匹配了location /test/,该location返回了响应。
  4. rewrite指令改变了变量$uri($document_uri)、$args($query_string),但不会改变$request、$request_uri,这些变量可以输出到access log中。
  5. nginx access log生成1条日志

●break
请求URL:http://example.com/break/a.html?key=value
结果:
flag=[break]
break page
request=[GET /break/a.html?key=value HTTP/1.1]
request_uri=[/break/a.html?key=value]
uri=[/test/a.html] args=[capture=a.html&key=value]
document_uri=[/test/a.html] query_string=[capture=a.html&key=value]
说明:

  1. 将原始请求/break/a.html?key=value重写为/test/a.html?capture=a.html&key=value
  2. 不再执行后续的rewrite 模块指令,没有修改flag的值。
  3. 不发起新的请求。继续执行本location中的后续处理阶段,即返回了响应。这是break标志与last标志的区别。
  4. rewrite指令改变了变量$uri($document_uri)、$args($query_string),但不会改变$request、$request_uri,这些变量可以输出到access log中。
  5. nginx access log生成1条日志

●break + set指令
请求URL:http://example.com/break_set/a.html?key=value
结果:
flag=[break_set]
说明:

  1. 将原始请求/break_set/a.html?key=value重写为/test/a.html?capture=a.html&key=value,由于rewrite的flag参数是break,不发起新的请求也不再执行后面的rewrite模块的指令。继续执行本location中的后续处理阶段,即返回了响应。
  2. rewrite指令改变了变量$uri($document_uri)、$args($query_string),但不会改变$request、$request_uri,这些变量可以输出到access log中。
  3. nginx access log生成1条日志

●break后无指令
请求URL:http://example.com/html/a.html?key=value
结果:
404 Not Found
说明:

  1. 将原始请求/html/a.html?key=value重写为/test/a.html?capture=a.html&key=value,由于使用了break参数,所以不会发起新的请求,由于没有其他指令,所以会执行该location下的默认的content阶段的指令,即尝试找/test/a.html(这个路径不是操作系统上的路径,而是nginx静态文件的路径,默认是以nginx安装目录下的html为根目录)这个html页面并输出内容,由于该页面不存在,所以返回404。
  2. rewrite指令改变了变量$uri($document_uri)、$args($query_string),但不会改变$request、$request_uri,这些变量可以输出到access log中。
  3. nginx access log生成1条日志

●redirect
请求URL:http://example.com/redirect/a.html?key=value
结果:
flag=[org]
test page
request=[GET /test/a.html?capture=a.html&key=value HTTP/1.1]
request_uri=[/test/a.html?capture=a.html&key=value]
uri=[/test/a.html] args=[capture=a.html&key=value]
document_uri=[/test/a.html] query_string=[capture=a.html&key=value]
说明:

  1. 直接返回客户端302,并将重写后的URL(http://example.com/test/a.html?capture=a.html&key=value)放到响应头的Location字段中。
  2. rewrite没有修改$uri($document_uri)、$args($query_string)、$request、$request_uri。access log中输出的第一个请求的上述变量没有修改。
  3. 如果是浏览器访问,浏览器会使用rewrite后的URL重新发起请求,并收到上述结果。
  4. nginx access log生成2条日志,一次是原请求的,另一次是客户端重新发起的请求。

●permanent
请求URL:http://example.com/permanent/a.html?key=value
结果:
flag=[org]
test page
request=[GET /test/a.html?capture=a.html&key=value HTTP/1.1]
request_uri=[/test/a.html?capture=a.html&key=value]
uri=[/test/a.html] args=[capture=a.html&key=value]
document_uri=[/test/a.html] query_string=[capture=a.html&key=value]
说明:

  1. 直接返回客户端301,并将重写后的URL(http://example.com/test/a.html?capture=a.html&key=value)放到响应头的Location字段中。
  2. rewrite没有修改$uri($document_uri)、$args($query_string)、$request、$request_uri。access log中输出的第一个请求的上述变量没有修改。
  3. 如果是浏览器访问,浏览器会使用rewrite后的URL重新发起请求,并收到上述结果。
  4. nginx access log生成2条日志,一次是原请求的,另一次是客户端重新发起的请求。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,924评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,781评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,813评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,264评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,273评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,383评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,800评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,482评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,673评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,497评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,545评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,240评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,802评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,866评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,101评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,673评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,245评论 2 341

推荐阅读更多精彩内容