How to implement interception of URI in nginx location

How to implement interception of URI in nginx location

illustrate:

Root and alias in location

  • The root directive simply sets the search root to the directory set by root, that is, it does not truncate the URI, but uses the original URI to jump to the directory to find the file
  • The aias directive will truncate the matching URI and then use the path set by alias plus the remaining URI as a subpath for searching

The uri of the proxy_pass in location

If the proxy_pass url does not contain uri

  • If the trailing character is "/", the matching URI will be truncated.
  • If the trailing character is not "/", the matching URI will not be truncated.

If the proxy_pass url has a uri, the matching uri will be truncated

Examples

Root in location

root@pts/1 $ ls -ld /data/web/lctest*|awk '{print $NF}'
/data/web/lctest
/data/web/lctest2
/data/web/lctest3
/data/web/lctest4


location /lctest {
  root /data/web/;
}

location /lctest2/ {
  root /data/web/;
}
location /lctest3 {
  root /data/web;
}
location /lctest4/ {
  root /data/web;
}

The curl test results are as follows

Note: If you don't add a / at the end when you enter it in the browser, it will be automatically added, but curl will not

root@pts/1 $ curl http://tapi.xxxx.com/lctest/
hello world

root@pts/1 $ curl http://tapi.xxxx.com/lctest2/
hello world
2

root@pts/1 $ curl http://tapi.xxxx.com/lctest3/
3
hello world

root@pts/1 $ curl http://tapi.xxxx.com/lctest4/
hello world
4

location alias

location /lctest5 {
  alias /data/web/;
}
location /lctest6/ {
  alias /data/web/;
}

location /lctest7 {
  alias /data/web;
}

## 403 /data/web forbidden
location /lctest8/ {
  alias /data/web;
}

The curl test results are as follows

curl 'http://tapi.kaishustory.com/lctest5/'
curl 'http://tapi.kaishustory.com/lctest6/'
curl 'http://tapi.kaishustory.com/lctest7/'
The results are all /data/web/index.html output root@pts/1 $ curl 'http://tapi.kaishustory.com/lctest8/'
<html>
<head><title>403 Forbidden</title></head>
<body bgcolor="white">
<center><h1>403 Forbidden</h1></center>
<hr><center>nginx</center>
</body>
</html>

location proxy_pass

#--------proxy_pass configuration---------------------
location /t1/ { proxy_pass http://servers; } #Normal, not truncated location /t2/ { proxy_pass http://servers/; } #Normal, truncation location /t3 { proxy_pass http://servers; } #Normal, not truncated location /t4 { proxy_pass http://servers/; } #Normal, truncation location /t5/ { proxy_pass http://servers/test/; } #Normal, truncation location /t6/ { proxy_pass http://servers/test; } #Missing "/", truncation location /t7 { proxy_pass http://servers/test/; } #Contains "//", truncation location /t8 { proxy_pass http://servers/test; } #Normal, truncation

Test Scripts

for i in $(seq 8)
do
  url=http://tapi.xxxx.com/t$i/doc/index.html
  echo "----------$url-----------"
  curl url
done

Test Results

----------http://tapi.xxxx.com/t1/doc/index.html------------
/t1/doc/index.html

----------http://tapi.xxxx.com/t2/doc/index.html------------
/doc/index.html

----------http://tapi.xxxx.com/t3/doc/index.html------------
/t3/doc/index.html

----------http://tapi.xxxx.com/t4/doc/index.html------------
/doc/index.html

----------http://tapi.xxxx.com/t5/doc/index.html------------
/test/doc/index.html

----------http://tapi.xxxx.com/t6/doc/index.html------------
/testdoc/index.html

----------http://tapi.xxxx.com/t7/doc/index.html------------
/test//doc/index.html

----------http://tapi.xxxx.com/t8/doc/index.html------------
/test/doc/index.html

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Nginx configuration directive location matcher priority and security issues
  • Detailed explanation of location configuration in Nginx server
  • Detailed explanation of Nginx location matching rules
  • Analysis of some basic points of location configuration in Nginx server
  • Detailed explanation of the location directive matching rules of the Nginx server
  • Detailed explanation of Nginx Location configuration
  • A brief guide to the Nginx Location directive
  • Introduction to location matching rules in Nginx
  • nginx configuration location summary location regular writing and rewrite rule writing
  • Nginx location matching rule example

<<:  mysql workbench installation and configuration tutorial under centOS

>>:  JavaScript type detection method example tutorial

Recommend

How to use limit_req_zone in Nginx to limit the access to the same IP

Nginx can use the limit_req_zone directive of the...

Detailed explanation of the middleman mode of Angular components

Table of contents 1. Middleman Model 2. Examples ...

SQL Get stored procedure return data process analysis

This article mainly introduces the analysis of th...

Docker uses Supervisor to manage process operations

A Docker container starts a single process when i...

Javascript operation mechanism Event Loop

Table of contents 1. Four concepts 1. JavaScript ...

MySQL UNION operator basic knowledge points

MySQL UNION Operator This tutorial introduces the...

MySQL character set garbled characters and solutions

Preface A character set is a set of symbols and e...

A brief discussion on whether too many MySQL data queries will cause OOM

Table of contents Impact of full table scan on th...

How to use docker to deploy dubbo project

1. First, use springboot to build a simple dubbo ...

Vue3 gets the current routing address

Correct answer Using useRouter : // router path: ...

Implementation of Redis master-slave cluster based on Docker

Table of contents 1. Pull the Redis image 2. Crea...

Vue encapsulates the public function method of exporting Excel data

vue+element UI encapsulates a public function to ...

Detailed examples of replace and replace into in MySQL into_Mysql

MySQL replace and replace into are both frequentl...

How to output Chinese characters in Linux kernel

You can easily input Chinese and get Chinese outp...