I often need to change nginx configuration at work recently, and learned how to use rewrite in nginx URL redirection The URL redirection mentioned here means that when a user visits a URL, it is redirected to another URL. A common application scenario is to redirect multiple domain names to the same URL (for example, redirect an old domain name to a new domain name). Redirect static file requests to CDN, etc. Jump to different sites (PC version, WAP version), etc. according to the user's device. URL redirection can be achieved by setting window.location on the page through js It can also be achieved by setting the header in PHP Of course, you can also use nginx's rewrite function to achieve nginx rewrite module rewrite is the static rewrite module of nginx The basic usage is rewrite pattern replace flag patten is a regular expression. URLs matching patten will be rewritten as replace. flag is optional. For example, redirect the old domain name to the new domain name server { listen 80; server_name www.old.com; rewrite ".*" http://www.new.com; } Keep the path when redirecting to a new domain server { listen 80; server_name www.old.com; rewrite "^/(.*)$" http://www.new.com/$1; } Rewrite and location work together to jump image files to cdn location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; rewrite "^/uploadfile\/(.*)$" http://static.XXX.com/uploadfile/$1; } You can add a flag after rewrite . The flag tags are: last is equivalent to the [L] mark in Apache, indicating that rewrite is completed break terminates the match and no longer matches the following rules redirect returns 302 temporary redirection. The address bar will display the redirected address. Permanent return 301 permanent redirection address bar will display the address after the jump The above method of using nginx rewrite to achieve URL redirection is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: MySQL 5.7.23 installation and configuration graphic tutorial
>>: JavaScript implements class lottery applet
This article example shares the specific code of ...
Table of contents 1. Truncate operation 1.1 What ...
1. The significance of building nexus service As ...
Preface Under Linux, compilation and linking requ...
I believe everyone is familiar with the trashcan,...
Docker is a very popular container technology. Th...
In Ubuntu, you often encounter the situation wher...
Table of contents front end According to the abov...
When executing yum in dockerfile or in the contai...
Table of contents 1. Handwritten instanceof 2. Im...
HTML forms are used to collect different types of...
0. Environment Operating system for this article:...
Introduction Memcached is a distributed caching s...
1. Stop the MySQL service in the command line: ne...
Recently, when I was learning Django, I needed to...