Nginx Rewrite

一:什么是rewrite

rewrite是url重写,主要实现url地址重写,以及重定向,就是把传入web的请求重定向到其他url的过程

二:rewrite使用场景

1.url地址跳转,例如用户访问cxy.com将其跳转到baidu.com,或者当用户通过http的方式访问cxy.com时,将其跳转至https的方式访问cxy.com
2.url伪静态,将动态页面显示为静态页面的一种技术,便于搜索引擎的录入
3.搜索引擎SEO优化依赖于url路径,以便支持搜索引擎录入
4.可以调整用户浏览url,看起来更加规范,合乎开发及产品人员的需求

三:rewrite语法

          关键字    正则表达式      代替的内容        重写类型
Syntax:  rewrite     regex        replacement       [flag];
Default: --
Context: server,location,if

在匹配过程中可以引用一些nginx的全局变量

例: http://localhost:88/test1/test2/test.php
$host: localhost
$server_port:88
$request_uri:/test1/test2/test.php
$document_root:/var/www/html
$request_filename:/var/www/html/test1/test2/test.php

四:开启nginx的rewrite日志功能

4.1 设置nginx的错误日志级别为notice

[root@web01-7 conf.d]# vim /etc/nginx/nginx.conf 

user  www;
worker_processes  1;

error_log  /var/log/nginx/error.log notice;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}

4.2 在http模块层,开启rewrite_log日志

http {
.......  
    rewrite_log     on;
.......
}

五:rewrite实例

5.1 用户访问cxy.com时跳转到百度

[root@web01-7 conf.d]# cat www.conf 
server {
    listen 80;
        server_name test.cxy.com;
        root /code/test/;
        index index.html;

        location / {
        rewrite ^/ https://www.baidu.com;       
     }  
}
image.png

测试访问http://test.cxy.com直接跳转到了www.baidu.com

image.png

5.2 用户访问/abc/1.html,实际上访问的是/cccc/bbb/2.html

先创建访问目录

[root@web01-7 test]# mkdir -p /code/test/cccc/bbb
[root@web01-7 test]# cd /code/test/cccc/bbb/
[root@web01-7 bbb]# cat 2.html 
cccc bbb

配置rewrite跳转

[root@web01-7 bbb]# vim /etc/nginx/conf.d/www.conf 

server {
        listen 80;
        server_name test.cxy.com;
        root /code/test/;
        index index.html;

       # location / {
        #       rewrite ^/ https://www.baidu.com;

         #}

        location ~* /abc/1.html {
                rewrite /abc/1.html /cccc/bbb/2.html;
        }
}

测试:当访问test.cxy.com/abc/1.html的时候,跳转访问到了test.cxy.com/cccc/bbb/2.html


image.png

因为location ~*规则是忽略大小写,现在我们测试访问test.cxy.com/ABC/1.html,发现显示404没办法访问


image.png

image.png

优化配置一(匹配大小写后正常跳转):

[root@web01-7 bbb]# vim /etc/nginx/conf.d/www.conf 
server {
        listen 80;
        server_name test.cxy.com;
        root /code/test/;
        index index.html;

       # location / {
        #       rewrite ^/ https://www.baidu.com;

         #}

        location ~* /abc/1.html {
                rewrite .* /cccc/bbb/2.html;      ##不管浏览器上输入的是什么,只要是匹配到了~* /abc/1.html就跳转
        }
}
[root@web01-7 bbb]#  nginx -t
[root@web01-7 bbb]# systemctl reload nginx

测试访问test.cxy.com/ABC/1.html,访问正常


image.png

优化配置二(让状态能显示302状态码,这个也是最终配置)

[root@web01-7 bbb]# vim /etc/nginx/conf.d/www.conf 
server {
        listen 80;
        server_name test.cxy.com;
        root /code/test/;
        index index.html;

       # location / {
        #       rewrite ^/ https://www.baidu.com;

         #}

        location ~* /abc/1.html {
                #rewrite .* /cccc/bbb/2.html redirect;         
                return 302 /cccc/bbb/2.html;                  #这个2个命令都是302跳转的命令,不要一起配置.配置一条即可
        }
}

测试访问结果网页跳转并且显示了302状态码


image.png

5.3 用户访问/2018/ccc/bbb/2.html实际上真实访问的是/2014/ccc/bbb/2.html

先创建访问目录

[root@web01-7 bbb]# cd /code/test/
[root@web01-7 test]# mkdir 2014/ccc/bbb -p
[root@web01-7 test]# cat 2014/ccc/bbb/2.html 
2014 cccc bbb 

配置rewrite跳转

[root@web01-7 conf.d]# cat www.conf 
server {
    listen 80;
        server_name test.cxy.com;
        root /code/test/;
        index index.html;

       # location / {
    #   rewrite ^/ https://www.baidu.com;

     #} 

    location ~* /abc/1.html {
        #rewrite .* /cccc/bbb/2.html redirect;
        return 302 /cccc/bbb/2.html;
    }

    location /2018 {
        rewrite ^/2018/(.*)$ /2014/$1 redirect;      #以根开始/2018下面的xxx,都跳到2014对应的目录xxx
    }
}

测试访问:


image.png

5.4 用户访问/cxy目录下的任何内容,实际上真实访问的是http://baidu.com

[root@web01-7 test]# cat /etc/nginx/conf.d/www.conf 
server {
    listen 80;
        server_name test.cxy.com;
        root /code/test/;
        index index.html;

    location /cxy {
        rewrite (.*) http://baidu.com redirect;
    }
}

5.5 用户访问cxy-11-22-33.html.实际上真实访问的是/cxy/11/22/33/cxy_33.html

先创建访问目录

[root@web01-7~]#mkdir /code/test/cxy/11/22/33/ -p 
[root@web01-7 33]# vim cxy_33.html 
11 22 33 cxy

配置rewrite跳转

[root@web01-7 33]# vim /etc/nginx/conf.d/www.conf 

server {
        listen 80;
        server_name test.cxy.com;
        root /code/test/;
        index index.html;
       
        location / {
                rewrite ^/(.*)-(.*)-(.*)-(.*).html /$1/$2/$3/$4/$1_$4.html redirect;
        }
}

测试访问:成功跳转


image.png

5.6 将http请求,跳转至https

server {
        listen 80;
        server_name test.cxy.com
        rewrite ^(.*) https://$server_name$1 redirect;
        # return 302 https://$server_name$request_uri;
}       

server {
        listen 443;
        server_name test.cxy.com
        ssl on;
}

六:flag的区别

根据rewrite语法

          关键字    正则表达式      代替的内容        重写类型
Syntax:  rewrite     regex        replacement       [flag];
Default: --
Context: server,location,if

每个rewrite都会跟一个flag
flag可以有如下参数

  • last:停止处理后续rewrite指令集,然后对当前重写的新url在rewrite指令集上重新查找;浏览器地址栏URL地址不变
  • break:停止处理后续rewrite指令集,并不在重新查找;浏览器地址栏URL地址不变
  • redirect:302临时重定向,浏览器地址会显示重写后的URL地址
  • permant:301永久重定向,浏览器地址会显示重写后的URL地址

6.1 重写配置

[root@web01-7 test]# vim /etc/nginx/conf.d/break_test.conf 

server {
    listen       80;
    server_name  rewrite.cxy.com;
    root   /code;
    location / {
        index  index.html index.htm;
    }

    location /break/ {
        rewrite ^/break/(.*) /test/$1 break;
        return 402;
     }

     location /last/ {
        rewrite ^/last/(.*) /test/$1 last;
        return 403;
     }

     location /test/ {
        return 508;
    }


    # 临时重定向
    location /redirect {
        rewrite ^ http://www.crane.run redirect;
    }
    # 永久重定向
   location /permanent {
        rewrite ^ http://www.crane.run permanent;
    }


}

6.2 测试last和break

当访问rewrite.cxy.com/last/时,返回508
当访问rewrite.cxy.com/break/
时,返回404

原因:break和last都停止处理后续rewrite指令集,不同之处在于last会重新发起新的请求.而break不会.当请求break时,如果匹配内容存在的话,可以直接请求成功,返回200;而如果请求内容不存在,则返回404.当请求last的时候.会对重写的新url重新发起请求,所以匹配到了return 508.

6.3 测试redirect和permanent

访问rewrite.cxy.com/redirect,返回302跳转


image.png

访问rewrite.cxy.com/permanent,返回301跳转


image.png

停止nginx ,再次测试
访问rewrite.cxy.com/redirect和rewrite.cxy.com/permanent


image.png
image.png

redirect和permanent的区别

  • 服务器配置好redirect和permanent之后,打开浏览器分别访问这两个请求地址,然后停止Nginx服务。这时再访问redirect请求会直接报出无法连接的错误。但是permanent请求是永久重定向,浏览器会忽略原始地址直接访问永久重定向之后的地址,所以请求仍然成功。(这个验证不能禁用浏览器的缓存,否则即使是permanent重定向,浏览器仍然会向原始地址发出请求验证之前的永久重定向是否有效)
  • 对于搜索引擎来说,搜索引擎在抓取到301永久重定向请求响应内容的同时也会将原始的网址替换为重定向之后的网址,而对于302临时重定向请求则仍然会使用原始的网址并且可能会被搜索引擎认为有作弊的嫌疑。所以对于线上正式环境来讲,尽量避免使用302跳转
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,837评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,551评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,417评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,448评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,524评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,554评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,569评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,316评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,766评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,077评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,240评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,912评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,560评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,176评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,425评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,114评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,114评论 2 352

推荐阅读更多精彩内容