Detailed Analysis of the Differences between break and last in Nginx

Detailed Analysis of the Differences between break and last in Nginx

Let's talk about the difference first

  • last, the rewritten rule will continue to use the rewritten value to match the following location.
  • break, the rewritten rule will not match the following location. Using the new rules, a http request is directly initiated.

Nginx configuration file

server {
  listen 88;
  server_name _;
  location /break { # location 1
   rewrite ^/break/(.*)$ /bak/$1 break;
  }
  location /last { # location 2
   rewrite ^/last/(.*)$ /bak/$1 last;
  }

  location /bak { # location 3
   default_type text/html;
   return 200 $uri;
  }

}

Visit http://rumenz.com:88/break/one

When location1 is hit, the browser address bar does not change. It goes directly to find the /nginx/html/bak/one file. Since there is no such file, 404 is returned.

Browser

Nginx error (error.log) log

/nginx/html/bak/one failed (2: No such file or directory)

break means stop after rewriting and no longer match the location block.

Visit http://rumenz.com:88/last/one

Hit location2, the browser address bar does not change, re-match to location3

last means to jump to the location block after rewriting and match it with the rewritten address again

Use cases for break and last

break

File download, hide and protect the real file server.

location /down {
 rewrite ^/down/(.*)$ https://rumenz.com/file/$1 break;
}

last

Rewrite the interface address, rewrite https://rumenz.com/api/list to https://rumenz.com/newapi/list

location /api {
 rewrite ^/api/(.*)$ /newapi/$1 last;
}

location /newapi {
 default_type Application/json;
 return 200 '{"code":200,"msg":"ok","data":["JSON.IM","json format"]}';
}

Summarize

This is the end of this article about the difference between break and last in Nginx. For more information about the difference between break and last in Nginx, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Analysis of the difference between last and break when writing rewrite in Nginx configuration

<<:  Vue's detailed code for implementing the shuttle box function

>>:  How to distinguish MySQL's innodb_flush_log_at_trx_commit and sync_binlog

Recommend

How to display percentage and the first few percent in MySQL

Table of contents Require Implementation Code dat...

Detailed explanation of Vue's ref attribute

Summarize This article ends here. I hope it can b...

Rhit efficient visualization Nginx log viewing tool

Table of contents Introduction Install Display Fi...

Solutions to invalid is Null segment judgment and IFNULL() failure in MySql

MySql Null field judgment and IFNULL failure proc...

Detailed explanation of the getBoundingClientRect() method in js

1. getBoundingClientRect() Analysis The getBoundi...

A brief discussion on browser compatibility issues in JavaScript

Browser compatibility is the most important part ...

Detailed explanation of eight methods to achieve CSS page bottom fixed

When we are writing a page, we often encounter a ...

Master the CSS property display:flow-root declaration in one article

byzhangxinxu from https://www.zhangxinxu.com/word...

Installation and use of Ubuntu 18.04 Server version (picture and text)

1 System Installation Steps OS Version:1804 Image...

How to configure Http, Https, WS, and WSS in Nginx

Written in front In today's Internet field, N...

How to create a new user in CentOS and enable key login

Table of contents Create a new user Authorize new...

Detailed tutorial on installing ElasticSearch 6.4.1 on CentOS7

1. Download the ElasticSearch 6.4.1 installation ...

How to install Zookeeper service on Linux system

1. Create the /usr/local/services/zookeeper folde...

Mysql method to copy a column of data in one table to a column in another table

mysql copy one table column to another table Some...