Use scenarios: The jump path needs to be dynamically configured according to the intercepted URL, which is common in accessing files and pictures with non-fixed IP addresses in the intranet. Request address: http://11.19.1.212:82/bimg4/32.52.62.42:222/DownLoadFile?filename=LOC:12/data/20180208/15/2e0ae54dfd752210083404deed15269c_222403 The actual intranet address to be accessed: http://32.52.62.42:222/DownLoadFile?filename=LOC:12/data/20180208/15/2e0ae54dfd752210083404deed15269c_222403 nginx configuration file server { listen 83; server_name localhost; index index.html index.htm; root D:/workspace-xxxx/xxx_Web; error_page 500 502 503 504 / 50x.html; location = /50x.html { root html; } location ^~ /xxx/ { proxy_pass http://192.168.60.36:8090/xxxx/; proxy_redirect default; proxy_set_header Host $host; proxy_set_header X - Real - IP $remote_addr; proxy_set_header X - Forwarded - Host $host; proxy_set_header X - Forwarded - Server $host; proxy_set_header X - Forwarded - For $proxy_add_x_forwarded_for; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; } # Here is the path after bimg4 in the request address and assigned to the forwarding address location ^ ~ / bimg4 / { if ($request_uri~ / bimg4 / (. * )) { set $bucketid $1; } proxy_pass http: //$bucketid; } } This is the end of this article about how to forward URL parameters in Nginx. For more information about Nginx URL forwarding with parameters, 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:
|
<<: MySQL master-slave replication delay causes and solutions
>>: js canvas implements verification code and obtains verification code function
Using cutecom for serial communication in Ubuntu ...
1. Arrange CSS in alphabetical order Not in alphab...
background The amount of new data in the business...
Use vue to simply implement a click flip effect f...
1. Introduction After MySQL is started, BufferPoo...
First download the dependencies: cnpm i -S vue-uu...
MySQL's CAST() and CONVERT() functions can be...
Table of contents 1. Introduction to calculator f...
Greek letters are a very commonly used series of ...
Preface We all know that the import and export of...
Table of contents Preface Introduction to QueryCa...
need Configuring DingTalk alarms in Zabbix is s...
1. Refer to the official website to install docke...
Possible reasons: The main reason why Seata does ...
Table of contents 1. React.Children.map 2. React....