Table of Contents
简单且快速的 return
正则表达式 rewrite
http 重定向为 https
统一规范域名
含 www 和 不含 www 之间的重定向
附录
重定向中常用全局变量" >重定向中常用全局变量
nginx 部分常用全局变量
Rewrite正则相关指令详解
Home Operation and Maintenance Nginx How nginx redirects information

How nginx redirects information

Jun 22, 2019 pm 01:13 PM
nginx Redirect

How nginx redirects information

nginx 是一个灵活且高效的网络服务器,如果想要在nginx服务器中重定,你可以从下面挑选一个适合的方式。

简单且快速的 return

这是一个非常简单的设置方式,只需要个return语句就可以了

return 301 https://example.com$request_uri;
Copy after login
Copy after login

你需要把这段代码放到nginx配置文件的server代码块中,301是永久重定向,你也可以设置成302做一个临时重定向(不建议)。

一个完整的例子:

return 301 https://example.com$request_uri;
Copy after login
Copy after login

正则表达式 rewrite

如果return不能满足你的复杂业务需求,你可以考虑下正则匹配重定向:

rewrite ^/foo/(bar)/(.*)$ https://$server_name/$1/$2 permanent;
Copy after login

同样这也是需要在server代码块中,其中permanent301永久跳转,若需要302可修改为redirect

一个完整的例子:

server {
    listen 80;
    listen [::]:80;
    hostname example.com www.example.com;
    root /var/www/example.com/public;
    rewrite ^/foo/(bar)/(.*)$ $scheme://$server_name/$1/$2 permanent;
}
Copy after login

又如:

server {
    listen       80;
    server_name   www.fangyongle.com  fangyongle.cn;
    if ($host != 'www.fangyongle.com' ) { 
        rewrite ^/(.*)$ https://www.fangyongle.com/$1 permanent; 
    } 
}
Copy after login

再如:

# 根据文件类型设置过期时间
location ~* \.(js|css|jpg|jpeg|gif|png|swf)$ {
    if (-f $request_filename) {
       expires    1h;
       break;
    }
}
Copy after login

使用Maps

如果你有一堆需要重定向的连接映射,你可以考虑在一个地方定义它,然后再通过if来手动判断重定向。

首先定义重定向链接映射redirect-map.conf

map $request_uri $redirect_uri {
    /about.html          /about-us;
    /customers.html      /our-customers;
    /products.html       /our-products;
}
Copy after login

然后在server代码块使用:

include redirect-map.conf;
server {
    […]
    if ( $redirect_uri ) {
        return 301 $redirect_uri;
    }
}
Copy after login

映射也可以有一些语法:

map $request_uri $redirect_uri {
    /about.html          /about-us;
    /customers.html      /our-customers;
    /products.html       /our-products;
    # Match any url that ends in products.html or producs.htm
    ~products\.html?$    /our-products;
    # case-insensitive version of the above
    ~*products\.html?$   /our-products;
    # A named capture that maps
    # e.g. product-1234.html into /products/item-1234/overview
    ~product-(?<sku>\d+)\.html   /products/item-$sku/overview;
}
Copy after login

一些实用的重定向例子

http 重定向为 https

return 301 https://$host$request_uri;
Copy after login

统一规范域名

server_name example.com www.example.com example.net www.example.net _;
if ( $host != $server_name ) {
    return 301 $scheme://$server_name$request_uri;
}
Copy after login

含 www 和 不含 www 之间的重定向

# non-www to www
if ( $host !~ ^www\. ) {
    return 301 $scheme://www.$host$request_uri;
}
Copy after login
# www to non-www
if ( $host ~ ^www\.(?<domain>.+)$ ) {
    return 301 $scheme://$domain$request_uri;
}
Copy after login

附录

重定向中常用全局变量

$scheme       // HTTP方法(如http,https),如:http
$host   // 请求主机头字段,否则为服务器名称,如:blog.fangyongle.com
$server_name   // 服务器名称,如:blog.fangyongle.com
$request_uri   // 包含请求参数的原始URI,不包含主机名,如:/2018/81.html?a=1&b=2
$request_filename  // 当前请求的文件的路径名,由root或alias和URI request组合而成,如:/2013/81.htmlnginx 部分常用全局变量
Copy after login

nginx 部分常用全局变量

$remote_addr//获取客户端ip
$binary_remote_addr//客户端ip(二进制)
$remote_port//客户端port,如:50472
$remote_user//已经经过Auth Basic Module验证的用户名
$host//请求主机头字段,否则为服务器名称,如:blog.fangyongle.com
$request//用户请求信息,如:GET ?a=1&b=2 HTTP/1.1
$request_filename//当前请求的文件的路径名,由root或alias和URI request组合而成,如:/2013/81.html
$status//请求的响应状态码,如:200
$body_bytes_sent        // 响应时送出的body字节数数量。即使连接中断,这个数据也是精确的,如:40
$content_length       // 等于请求行的“Content_Length”的值
$content_type       // 等于请求行的“Content_Type”的值
$http_referer       // 引用地址
$http_user_agent      // 客户端agent信息,如:Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.76 Safari/537.36
$args     //与$query_string相同 等于当中URL的参数(GET),如a=1&b=2
$document_uri     //与$uri相同  这个变量指当前的请求URI,不包括任何参数(见$args) 如:/2018/81.html
$document_root     //针对当前请求的根路径设置值
$hostname     //如:centos53.localdomain
$http_cookie    //客户端cookie信息
$cookie_COOKIE    //cookie COOKIE变量的值
$is_args//如果有$args参数,这个变量等于”?”,否则等于”",空值,如?
$limit_rate//这个变量可以限制连接速率,0表示不限速
$query_string    // 与$args相同 等于当中URL的参数(GET),如a=1&b=2
$request_body   // 记录POST过来的数据信息
$request_body_file//客户端请求主体信息的临时文件名
$request_method      //客户端请求的动作,通常为GET或POST,如:GET
$request_uri      //包含请求参数的原始URI,不包含主机名,如:/2018/81.html?a=1&b=2
$scheme       //HTTP方法(如http,https),如:http
$uri//这个变量指当前的请求URI,不包括任何参数(见$args) 如:/2018/81.html
$request_completion//如果请求结束,设置为OK. 当请求未结束或如果该请求不是请求链串的最后一个时,为空(Empty),如:OK
$server_protocol//请求使用的协议,通常是HTTP/1.0或HTTP/1.1,如:HTTP/1.1
$server_addr//服务器IP地址,在完成一次系统调用后可以确定这个值
$server_name//服务器名称,如:blog.fangyongle.com
$server_port//请求到达服务器的端口号,如:80
Copy after login

Rewrite正则相关指令详解

nginx的rewrite相当于apache的rewriterule(大多数情况下可以把原有apache的rewrite规则加上引号就可以直接使用),它可以用在server,locationIF条件判断块中,命令格式如下:

rewrite <regex> <replacement> <flag>
Copy after login

正则表达式匹配 

  • ~ is a case-sensitive match

  • ~* is a case-insensitive match

  • ##!~ and !~* are case-sensitive mismatch and case-insensitive mismatch respectively

File and directory matching judgment

  • -f and !-f are used to determine whether the file exists

  • -d and !-d are used to determine whether the directory exists

  • -e and ! -e is used to determine whether the file or directory exists

  • -x and !-x is used to determine whether the file is executable

flag tag

  • last - This Flag is basically used.

  • break - Abortrewirte, no longer continue matching

  • redirect - Returns the HTTP status of temporary redirection 302

  • permanent - Returns the HTTP status of permanent redirection 301

Use

last and break to implement URI rewriting, and the browser address bar will remain unchanged. And there are subtle differences between the two:

  • The

    alias directive must be marked with last

  • ## When using the
  • proxy_pass

    command, you need to use the break mark

  • ##last
  • marked in this article

    rewrite After the rule is executed, the request will be re-initiated for the server{...} tag where it is located, and the break tag will terminate the matching after the matching of this rule is completed.

For more Nginx related technical articles, please visit the Nginx Tutorial column to learn!

The above is the detailed content of How nginx redirects information. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve nginx403 How to solve nginx403 Apr 14, 2025 am 10:33 AM

How to fix Nginx 403 Forbidden error? Check file or directory permissions; 2. Check .htaccess file; 3. Check Nginx configuration file; 4. Restart Nginx. Other possible causes include firewall rules, SELinux settings, or application issues.

How to check whether nginx is started How to check whether nginx is started Apr 14, 2025 pm 01:03 PM

How to confirm whether Nginx is started: 1. Use the command line: systemctl status nginx (Linux/Unix), netstat -ano | findstr 80 (Windows); 2. Check whether port 80 is open; 3. Check the Nginx startup message in the system log; 4. Use third-party tools, such as Nagios, Zabbix, and Icinga.

How to solve nginx403 error How to solve nginx403 error Apr 14, 2025 pm 12:54 PM

The server does not have permission to access the requested resource, resulting in a nginx 403 error. Solutions include: Check file permissions. Check the .htaccess configuration. Check nginx configuration. Configure SELinux permissions. Check the firewall rules. Troubleshoot other causes such as browser problems, server failures, or other possible errors.

How to solve nginx304 error How to solve nginx304 error Apr 14, 2025 pm 12:45 PM

Answer to the question: 304 Not Modified error indicates that the browser has cached the latest resource version of the client request. Solution: 1. Clear the browser cache; 2. Disable the browser cache; 3. Configure Nginx to allow client cache; 4. Check file permissions; 5. Check file hash; 6. Disable CDN or reverse proxy cache; 7. Restart Nginx.

How to start nginx in Linux How to start nginx in Linux Apr 14, 2025 pm 12:51 PM

Steps to start Nginx in Linux: Check whether Nginx is installed. Use systemctl start nginx to start the Nginx service. Use systemctl enable nginx to enable automatic startup of Nginx at system startup. Use systemctl status nginx to verify that the startup is successful. Visit http://localhost in a web browser to view the default welcome page.

How to configure nginx in Windows How to configure nginx in Windows Apr 14, 2025 pm 12:57 PM

How to configure Nginx in Windows? Install Nginx and create a virtual host configuration. Modify the main configuration file and include the virtual host configuration. Start or reload Nginx. Test the configuration and view the website. Selectively enable SSL and configure SSL certificates. Selectively set the firewall to allow port 80 and 443 traffic.

How to solve the problem of nginx cross-domain How to solve the problem of nginx cross-domain Apr 14, 2025 am 10:15 AM

There are two ways to solve the Nginx cross-domain problem: modify the cross-domain response header: add directives to allow cross-domain requests, specify allowed methods and headers, and set cache time. Use CORS modules: Enable modules and configure CORS rules that allow cross-domain requests, methods, headers, and cache times.

How to check the running status of nginx How to check the running status of nginx Apr 14, 2025 am 11:48 AM

The methods to view the running status of Nginx are: use the ps command to view the process status; view the Nginx configuration file /etc/nginx/nginx.conf; use the Nginx status module to enable the status endpoint; use monitoring tools such as Prometheus, Zabbix, or Nagios.

See all articles