nginx的rewrite应用和if应用


文章目录

  • nginx的rewrite应用和if应用
  • rewrite应用
  • if应用


rewrite应用

Rewite 规则作用

Rewrite规则可以实现对url的重写,以及重定向

作用场景:

  • URL访问跳转,支持开发设计,如页面跳转,兼容性支持,展示效果等
  • SEO优化
  • 维护:后台维护、流量转发等
  • 安全

常见的flag

flag

作用

last

基本上都用这个flag,表示当前的匹配结束,继续下一个匹配,最多匹配10个到20个 一旦此rewrite规则重写完成后,就不再被后面其它的rewrite规则进行处理 而是由UserAgent重新对重写后的URL再一次发起请求,并从头开始执行类似的过程

break

中止Rewrite,不再继续匹配 一旦此rewrite规则重写完成后,由UserAgent对新的URL重新发起请求, 且不再会被当前location内的任何rewrite规则所检查

redirect

以临时重定向的HTTP状态302返回新的URL

permanent

以永久重定向的HTTP状态301返回新的URL

rewrite模块的作用是用来执行URL重定向。这个机制有利于去掉恶意访问的url,也有利于搜索引擎优化(SEO)
nginx使用的语法源于Perl兼容正则表达式(PCRE)库,基本语法如下:

标识符

意义

^

必须以^后的实体开头

$

必须以$前的实体结尾

.

匹配任意字符

[ ]

匹配指定字符集内的任意字符

[^]

匹配任何不包括在指定字符集内的任意字符串

竖杠

匹配之前或之后的实体

()

分组,组成一组用于匹配的实体,通常会

rewrite应用

语法:rewrite regex replacement flag;

//创建目录用来存放图片
[root@nginx ~]# cd /usr/local/nginx/html/
[root@nginx html]# ls
50x.html  index.html
[root@nginx html]# mkdir images
[root@nginx html]# ls
50x.html  images  index.html

//上传图片
[root@nginx html]# cd images/
[root@nginx images]# ls
哆啦A梦.jpg

//修改配置文件
[root@nginx images]# vim /usr/local/nginx/conf/nginx.conf
server {
        listen       80;
        server_name  localhost;

        location = /status {
            stub_status;
        }

        location / {
            root html;
            index index.html;
        }
[root@nginx images]# systemctl reload nginx

这样我们就可以访问到图片

nginx rewrite保留参数 nginx rewrite flag_重定向

实例

//修改存放图片的目录
[root@nginx html]# ls
50x.html  images  index.html
[root@nginx html]# mv images imgs
[root@nginx html]# ls
50x.html  imgs  index.html

//修改配置文件
[root@nginx html]# vim /usr/local/nginx/conf/nginx.conf
    server {
        listen       80;
        server_name  localhost;

        location = /status {
            stub_status;
        }

        location / {
            root html;
            index index.html;
        }

        location /images {
            rewrite ^/images/(.*\.jpg)$ /imgs/$1 break;
        }
[root@nginx html]# systemctl reload nginx

把images改成imgs访问

nginx rewrite保留参数 nginx rewrite flag_html_02

//通过访问images,转到图片
[root@nginx html]# vim /usr/local/nginx/conf/nginx.conf
server {
        listen       80;
        server_name  localhost;

        location = /status {
            stub_status;
        }

        location / {
            root html;
            index index.html;
        }
        
        location /images {
            rewrite ^/images/(.*\.jpg)$ https://ss3.baidu.com/-fo3dSag_xI4khGko9WTAnF6hhy/zhidao/pic/item/a50f4bfbfbedab64ad703eaff736afc379311e5a.jpg break;
        }
[root@nginx html]# systemctl reload nginx

访问

nginx rewrite保留参数 nginx rewrite flag_html_03

if应用

语法:if (condition) {...}

应用场景:

  • server段
  • location段

常见的condition

  • 变量名(变量值为空串,或者以“0”开始,则为false,其它的均为true)
  • 以变量为操作数构成的比较表达式(可使用=,!=类似的比较操作符进行测试)
  • 正则表达式的模式匹配操作
  • ~:区分大小写的模式匹配检查
  • ~*:不区分大小写的模式匹配检查
  • !和!*:对上面两种测试取反
  • 测试指定路径为文件的可能性(-f,!-f)
  • 测试指定路径为目录的可能性(-d,!-d)
  • 测试文件的存在性(-e,!-e)
  • 检查文件是否有执行权限(-x,!-x)

基于浏览器实现分离案例

if ($http_user_agent ~ Firefox) {
  rewrite ^(.*)$ /firefox/$1 break;
}

if ($http_user_agent ~ MSIE) {
  rewrite ^(.*)$ /msie/$1 break;
}

if ($http_user_agent ~ Chrome) {
  rewrite ^(.*)$ /chrome/$1 break;
}

防盗链案例

location ~* \.(jpg|gif|jpeg|png)$ {
  valid_referers none blocked www.idfsoft.com;
  if ($invalid_referer) {
    rewrite ^/ http://www.idfsoft.com/403.html;
  }
}