rewrite跳转

nignx程序location(匹配)配置方法

location作用: 匹配指定的URI信息,根据访问不同的URI做不同的处理

官方说明:

Syntax: location [ = | ~ | ~* | ^~ ] uri { ... }
location @name { ... }
Default:    —
Context:    server, location

location匹配符号

= 精准匹配指定URI信息 (精准匹配时会严格要求匹配信息前后内容)

~ 模糊匹配指定URI信息(区分大小写) (模糊匹配不会严格要求URI前后内容信息)

~* 模糊匹配指定URI信息(不区分大小写)

^~ 优先模糊匹配指定URI信息

/ 默认匹配项

/xxx/ 匹配指定目录

.xxx$ 匹配以xxx结尾的URI信息

默认参数为:无

可在:server和location背景(模块)内进行使用

PS: 当匹配时 精准匹配是最优先 其次是优先匹配

官方举例

location = / {   精确匹配

 [ configuration A ]   做什么处理

}
location / {        进行默认匹配项

 [ configuration B ]

}
location /documents/ {      根据资源目录信息进行匹配

 [ configuration C ]

}
location ^~ /images/ {      进行优先匹配 /images/目录

 [ configuration D ]

}
location ~* \.(gif|jpg|jpeg)$ {   匹配以gif / jpg / jpeg 结尾的URI信息

 [ configuration E ]

}

实际应用

问题

输入www.oldboy.com/meinv01.html 显示 /htnl/www/oldboy/oldboy.jpg图片

解题思路:

(1) 根据不同uri显示不同页面信息

 location /meinv01.html {    指定匹配URI信息为meinv01.html

 return 200 meinv01         # return 表示网页显示指定的内容

 }

return 语法格式

return 200 xxxx
(固定) (返回码) (网页显示什么信息)

(2) 完善配置文件

[root@web02 conf.d]# cat www.conf

server {

 listen 80;                   # 指定端口

 server_name www.oldboy.com;  # 指定域名

 location / {                 # 默认匹配项

 root /html/www;               # 指定站点目录

 }

 location /meinv01.html {      # 指定匹配meinv01.html

 return 301 http://www.oldboy.com/oldboy/oldboy.jpg;  #  指定显示下面网站内容

 }

}

nginx程序rewrite 跳转功能

当用户用浏览器进行访问网站时 , 输入域名地址A 发送到web服务器上 , 由web服务器进行处理 跳转访问域名地址B

官方说明:

Syntax: rewrite regex replacement [flag];
Default:    —
Context:    server, location, if

语法:

rewrite 要跳转的URI/L信息 跳转到的URI/L信息 跳转方法

默认参数: 无

可以在: server / location / if 模块内进行使用

实例:

跳转 URI信息

server{
   listen 80;
   server_name www.oldboy.com;  
   location /{
     root /html/www;
     index index.html;
}

 location ~^/2014/{        # 指定正则匹配以/2014/开头URI信息
 rewrite ^/2014/(.*) /2018/$1 redirect;
    # 指定跳转 URI开头/2014/信息跳转到开头/2018/ 正则符$1后向引用前向 URI /2014/后面内容追加给/2018/后
 }
}

URL跳转

server{

 listen 80;

 server_name www.old.com;

 rewrite (.*) http://www.baidu.com:80 permanent;  #匹配域名信息 永久跳转到百度的80端口

 location / {

 root /html/www;

 index index.html;

 }

rewrite跳转方法

last 跳转 (不会改变浏览器URL/URI信息)

解释 : 用户通过浏览器发送请求 web服务器收到请求后响应跳转的域名地址信息 浏览器收到后去会访问跳转的域名地址

实例:

server{

 listen 80;

 server_name www.oldboy.com;

 location / {

 root /html/www;

 index index.html;

 }

 location ~/aaa/ { # 匹配URI中带有/aaa/信息

rewrite (.*) $host/bbb/ccc/ last; # 匹配到的URI整体替换成 /bbb/ccc/  

 }

}

break 跳转

解释: 用户访问过来, 服务器会自己进行找寻指定跳转 找到后响应给客户端浏览器(URI/L不会发生改变)

实例:

server{

 listen 80;

 server_name www.oldboy.com;

 location /{

 root /html/www;

 index index.html;

 }

 location ~^/aaa/{               # 匹配URI中以/aaa/目录开头的信息

rewrite (.*) /bbb/ccc/ break;     #  匹配到的URI整体替换成 /bbb/ccc/

 }

}

常用跳转 redirect临时跳转

说明: 跳转方式和last跳转一样会返回一个跳转域名 由客户端再次发起请求 redirect (临时)跳转 跳转时地址栏的URI/L信息 会进行改变 改变成跳转的URI/L

例子

server{

listen 80;

server_name www.oldboy.com;

location / {

root /html/www;

index index.html;

}

location ~/aaa/ {                           # 匹配URI中带有/aaa/信息

rewrite ^/aaa/(.*) ^/bbb/$1 redirect;       #  指定将/aaa/开头的URI 跳转成以/bbb/开头的URI 并后面路径不变

}

}

常用跳转 permanent永久跳转

说明: 跳转方式和last跳转一样会返回一个跳转域名 由客户端再次发起请求

permanent(永久跳转) 将地址url/uri信息进行跳转变化

例子

server{

 listen 80;

 server_name www.oldboy.com;

 location /{

 root /html/www;

 index index.html;

 }

 location ~/aaa/{                       # 匹配URI中带有/aaa/信息

 rewrite ^/aaa/(.*) ^/bbb/$1 permanent ; # 指定将/aaa/开头的URI 跳转成以/bbb/开头的URI 并后面路径不变

 }

}

alias和root的区别

alias相当于用户请求路径映射
root表示指明路径对应的location 地址

当用户访问 www.baidu.com/abc/index.html时
进行跳转操作

location /images/ {
        root "/app/webroot"
}

访问: http://www.test.com/images/a.jpg  相当于文件系统路径 /app/webroot/images/a.jpg 
location  /images/ {
        alias  "/www/pictures/"; 
}
访问: http://www.test.com/images/a.jpg  相当于文件系统路径/www/pictures/a.jpg 

你可能感兴趣的:(rewrite跳转)