How to redirect URL using nginx rewrite

How to redirect URL using nginx rewrite

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:
  • Detailed explanation of Nginx's rewrite module
  • Nginx URL rewriting mechanism principle and usage examples
  • Nginx rewrite regular matching rewriting method example
  • Detailed explanation of location and rewrite usage in nginx
  • Detailed explanation of nginx rewrite and location according to URL parameters
  • Nginx rewrite rewrite basics and examples sharing
  • Nginx Rewrite rules and usage introduction and skills examples
  • nginx rewrite pseudo-static configuration parameters and usage examples
  • Analysis of nginx rewrite function usage scenarios

<<:  MySQL 5.7.23 installation and configuration graphic tutorial

>>:  JavaScript implements class lottery applet

Recommend

JS implements the rock-paper-scissors game

This article example shares the specific code of ...

A brief discussion on how to elegantly delete large tables in MySQL

Table of contents 1. Truncate operation 1.1 What ...

Detailed steps for setting up a nexus server

1. The significance of building nexus service As ...

Steps to use autoconf to generate Makefile and compile the project

Preface Under Linux, compilation and linking requ...

Trash-Cli: Command-line Recycle Bin Tool on Linux

I believe everyone is familiar with the trashcan,...

Goodbye Docker: How to Transform to Containerd in 5 Minutes

Docker is a very popular container technology. Th...

Ubuntu 18.04 disable/enable touchpad via command

In Ubuntu, you often encounter the situation wher...

Implementation of React page turner (including front and back ends)

Table of contents front end According to the abov...

Solution to the error when calling yum in docker container

When executing yum in dockerfile or in the contai...

Detailed explanation of HTML form elements (Part 1)

HTML forms are used to collect different types of...

Install mysql5.7.13 using RPM in CentOS 7

0. Environment Operating system for this article:...

Detailed explanation of Mencached cache configuration based on Nginx

Introduction Memcached is a distributed caching s...

The perfect solution to the Chinese garbled characters in mysql6.x under win7

1. Stop the MySQL service in the command line: ne...

Solution to 2059 error when connecting Navicat to MySQL

Recently, when I was learning Django, I needed to...