菜鸟笔记
提升您的技术认知

nginx 跳转-ag真人游戏

一.nginx常见模块

1.http

http块是nginx服务器配置中的重要部分,代理、缓存和日志定义等绝大多数的功能和第三方模块的配置都可以放在这模块中。作用包括:文件引入、mime-type定义、日志自定义、是否使用sendfile传输文件、连接超时时间、单连接请求数上限等。

2.server

server块,虚拟主机(虚拟服务器)。作用:使得nginx服务器可以在同一台服务器上只要运行一组nginx进程,就可以运行多个网站。

3.location

location块是server块的一个指令。作用:基于nginx服务器接收到的请求字符串,虚拟主机名称(ip,域名)、url匹配,对特定请求进行处理。

1.一般分为普通和正则

常用的正则表达式

字符 含义
. 匹配任意单个字符,可以是一个汉字
^ 行首锚定, 用于模式的最左侧
$ 行尾锚定,用于模式的最右侧
* 匹配前面字符任意次(包括0次)
? 0或1次
1次或多次(1次或以上)
\ 转义符
\d 只匹配数字
{n} 重复n次
{n,} 至少n次(n次货以上)
{n,m} n到m次
[ ] 定义匹配字符的范围,只匹配一次
[c] 单个字符
[a-z] 匹配任意小写字母
[a-za-z0-9] 匹配任意字母和数字
() 表达式的开始和结束位置
| 或运算符a|b

2.location 常用的匹配规则

规则表达式 规则含义
= 进行普通字符精确匹配。也就是完全匹配
^~ 表示普通字符匹配。使用前缀匹配。如果匹配成功,则不再匹配其他 location
~ 表示执行一个正则匹配,区分大小写
~* 表示执行一个正则匹配,不区分大小写
!~ 表示执行一个正则匹配,区分大小写不匹配
!~* 表示执行一个正则匹配,不区分大小写不匹配

3.location 示例

1)精确匹配

location = / {}
=为精确匹配 / , 主机名后不能携带任何字符串,比如 / 和 /data ,则/匹配,/data不匹配

2)一般匹配/通用匹配

location  / {}
代表已/开头,所以这条规则将匹配所有的请求  
location  /documents/ {}
匹配任何已/documents/开头的地址,匹配符合后,还会继续往下搜索其他 location,只有其它location后面的正则表达式没有匹配到时,才会用这一条
  1. 正则匹配
location ^~ /images/ {} 
匹配任何已/images/ 开头的地址,匹配符合后,停止往下搜索,采用这一条
location ~* \.(gif|jpg|jpeg)$ {} 
匹配所有 gif jpg 或 jepg 结尾的请求
如果 有上面的location ^~ /images/ {}匹配  则会先匹配上一请求,所以到不了这一条。

4.location优先级排列说明

  1. 等号类型(=)的优先级最高。一旦匹配成功,则不再查找其他匹配项。
  2. ^~类型表达式。一旦匹配成功,则不再查找其他匹配项。
  3. 正则表达式类型(*)的优先级次之。常规字符串匹配类型(不带任何修饰符的匹配),按前缀匹配。/test
  4. 通用匹配(/),如果没有其它匹配,任何请求都会匹配到。

location 优先级总结
如果是匹配路径:
(location = 完整路径) > (location ^~ 完整路径) > (location ~* 完整路径) >(location ~ 完整路径) > (location /)通用匹配
用目录做匹配访问某个文件
(location =目录)>(location~目录/)> (location~目录)>(location ~*目录)>(location目录)>(location /)

[root@localhost conf]# vim nginx.conf
[root@localhost conf]# pwd
/usr/local/nginx/conf


增加

[root@localhost conf]# mkdir -p /wuqi/plane
[root@localhost conf]# vim /wuqi/plane/index.html


但是打开ag真人游戏主页仍然不是我们想要的页面

所以证实了在精准匹配没加后缀前级别还不如普通匹配

[root@localhost wuqi]# vim /usr/local/nginx/conf/nginx.conf



重启服务后

[root@localhost wuqi]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@localhost wuqi]# service nginx restart

在域名后加上后缀,精准匹配就生效了,而不再是ag真人游戏主页了

实际网站使用中,至少有三个匹配规则定义

第一个规则
直接匹配网站根,通过域名访问网站ag真人游戏首页比较频繁,使用这个会加速处理,比如说ag真人试玩娱乐官网。
可以是一个静态ag真人游戏首页,也可以直接转发给后端应用服务器
第二个规则
是处理静态文件请求,这是nginx作为http服务器的强项有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用
第三个规则
就是通用规则,比如用来转发带.php、.jsp后缀的动态请求到后端应用服务器。

现在 nginx 已经成为很多公司作为前端反向代理服务器的首选,在实际工作中往往会
遇到很多跳转(重写 url)的需求。比如更换域名后需要保持旧的域名能跳转到新的域名
上、某网页发生改变需要跳转到新的页面、网站防盗链等等需求。如果在后端使用的 apache
服务器,虽然也能做跳转,规则库也很强大,所以用 nginx 跳转效率会更高。

1.功能

rewrite功能就是,使用nginx提供的全局变量或自己设置的变量,结合正则表达式和标记位实现url重写以及重定向。比如:更换域名后需要保持旧的域名能跳转到新的域名上、某网页发生改变需要跳转到新的页面、网站防盗链等等需求
rewrite 只能在
server {}
location {}
if {}
中,并且默认只能对域名后边的除去传递的参数外的字符串起作用

2.跳转场景

rewrite 跳转场景主要包括以下几种

  1. 可以调整用户浏览的 url,看起来更规范,合乎开发及产品人员的需求
  2. 为了让搜索引擎搜录网站内容及用户体验更好,企业会将动态 url 地址伪装成静态地址提供服务
  3. 网址换新域名后,让旧的访问跳转到新的域名上。例如,访问京东的 360buy.com会跳转到 jd.com
  4. 根据特殊变量、目录、客户端的信息进行 url 调整等。

3.跳转实现

nginx 是通过 ngx_http_rewrite_module 模块支持 url 重写、支持 if 条件判断,但不支
持 else。
另外该模块需要 pcre 支持,应在编译 nginx 时指定 pcre 支持,默认已经安装。
根据相关变量重定向和选择不同的配置,从一个 location 跳转到另一个 location,不过这样
的循环最多可以执行 10 次,超过后 nginx 将返回 500 错误。
同时,重写模块包含 set 指令,来创建新的变量并设其值,这在有些情景下非常有用的,如记录条件标识、传递参数到其他location、记录做了什么等等。

4.执行顺序

rewrite执行顺序如下:

  1. 执行server块里面的rewrite指令。
  2. 执行location 匹配。
  3. 执行选定的location中的rewrite指令。

5.语法格式

rewrite [flag];
regex:表示正则匹配规则
replacement:表示跳转后的内容
flag:表示rewrite 支持的 flag 标记

flag 标记说明:
last:本条规则匹配完成后,继续向下匹配新的location url规则,一般用在server和if中
break:本条规则匹配完成即终止,不再匹配后面的任何规则。一般用在location中
redirect:返回 302 临时重定向,浏览器地址会显示跳转后的 url 地址,爬虫不会更新 url(因为是临时)。
permanent:返回 301 永久重定向,浏览器地址栏会显示跳转后的 url 地址,爬虫更新 url。

6.实例

6.1域名跳转

从一个网址跳转至另一个域名

[root@localhost ~]# cd /usr/local/nginx/html
[root@localhost html]# mkdir zy
root@localhost html]# ls
123.png  50x.html  index.html  zy
[root@localhost html]# cd zy
[root@localhost zy]# vim index.html



打开客户机

[root@www ~]# vim /etc/hosts


打开浏览器,输入“www.zy.com”

但是网页打开的却是“www.fxy.com”

6.2基于客户端ip 访问跳转

输入ip地址进行跳转到目标地址

[root@localhost ~]# cd /usr/local/nginx/conf
[root@localhost conf]# vim nginx.conf


创建一个页面

[root@localhost nginx]# cd /usr/local/nginx/html
[root@localhost weihu]# vim weihu.html


打开客户端,输入“192.168.133.100”或者“www.zy.com”

6.3基于旧域名跳转到新域名后面加目录

在原目标地址中间增加一个目录

[root@localhost ~]# cd /usr/local/nginx/conf
[root@localhost conf]# vim nginx.conf


[root@localhost conf]# cd /usr/local/nginx/html/
[root@localhost html]# mkdir -p bbs/luntan
[root@localhost html]# ls
123.png  50x.html  bbs  index.html
[root@localhost html]# cd bbs
[root@localhost bbs]# ls
luntan
[root@localhost bbs]# cd luntan/
[root@localhost luntan]# vim test.html
[root@localhost luntan]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@localhost luntan]# service nginx restart

开启客户端 在网页里输入“www.zy.com/luntan”

会跳到新地址

6.4基于参数匹配的跳转

匹配参数可以直接跳转

[root@localhost ~]# cd /usr/local/nginx/conf/
[root@localhost conf]# vim nginx.conf


开启客户端
输入网址这里200后的数可以随便输入任意数

跳转至ag真人游戏主页

6.5基于目录下所有的php文件

只要是.php结尾的都可以跳转ag真人游戏主页

[root@localhost ~]# cd /usr/local/nginx/conf/
[root@localhost conf]# vim nginx.conf



打开客户端
输入网址后加上“upload…/.php"结尾

网页会自动跳转到ag真人游戏主页

6.6基于普通的一条url

从目标地址跳转至ag真人游戏主页

[root@localhost ~]# cd /usr/local/nginx/conf
[root@localhost conf]# vim nginx.conf


[root@localhost conf]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@localhost conf]# service nginx restart

开启客户端
输入www.zy.com/abc/123.html

跳至ag真人游戏主页

网站地图