nginx server nginx is an excellent web server that is very efficient in processing static files. At the same time, its proxy forwarding function is also very simple and efficient when combined with other background servers. location We know that nginx will parse the request and then get information about the requested URL. We only need to match the URL and then intercept it. Matching rules location / { if ($request_uri ~* ^/\?http(.*)$) { return 404; } } After such matching, we can intercept all requests to the root directory URL and the parameter is ?httpxxx. Similar requests will display 404. Anti-hotlink Returns the http code, for example, to set up nginx anti-hotlinking: location ~* \.(gif|jpg|png|swf|flv)$ { valid_referers none blocked www.80shihua.com www.menghuiguli.com; if ($invalid_referer) { return 404; } } nginx common variables nginx parses out many variables that we commonly use. We just need to use them. The following are the commonly used variables of nginx. For specific usage, please refer to the official documentation.
Summarize This is the end of this article on how to use nginx to intercept specified URL requests through regular expressions. For more relevant content about nginx intercepting specified URL requests through regular expressions, 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:
|
<<: Vue3+script setup+ts+Vite+Volar project
>>: How to completely delete the MySQL 8.0 service under Linux
For security reasons, Alibaba Cloud Server ECS co...
1 System Installation Steps OS Version:1804 Image...
What is an inode? To understand inode, we must st...
Frame structure tag <frameset></frameset...
1. Application Scenarios Parent page a.jsp Subpage...
1. Install Docker on the server yum install docke...
The author recently encountered a performance bot...
Since I found that the push image always timed ou...
1: Download MySql Official website download addre...
What is an index? An index is a data structure th...
Table of contents 1.sleep function 2. setTimeout ...
useState useState adds some internal state to a c...
Preface Anyone who has learned JavaScript must be...
Use of clip-path polygon The value is composed of...
Table of contents 1. Why NanoID is replacing UUID...