概述
目录
rewrite跳转实现
rewrite 执行顺序
flag标记说明
rewrite和location区别
rewrite 示例
基于域名的跳转
基于客户端 IP 访问跳转
基于旧域名跳转到新域名后面加目录
基于参数匹配的跳转
基于目录下所有 php 结尾的文件跳转
基于最普通一条 url 请求的跳转
rewrite功能就是,使用nginx提供的全局变量或自己设置的变量,结合正则表达式和标记位实现URL重写以及重定向。
比如:更换域名后需要保持旧的域名能跳转到新的域名上、某网页发生改变需要跳转到新的页面、网站防盗链等等需求。
rewrite只能放在server{},location{},if{}中,并且默认只能对域名后边的除去传递的参数外的字符串起作用
例如 http://www.kgc.com/abc/bbs/index.php?a=1&b=2 只对/abc/bbs/index.php重写。
语法格式:
rewrite <regex> <replacement> [flag];
regex :表示正则匹配规则。
replacement :表示跳转后的内容。
flag :表示rewrite支持的flag标记。
rewrite跳转实现
Nginx:通过ngx_http_rewrite_module 模块支持URL重写、支持if条件判断,但不支持else
跳转:从一个 location跳转到另一个location,循环最多可以执行10次,超过后nginx将返回500错误
PCRE支持:perl兼容正则表达式的语法规则匹配
重写模块 set 指令:创建新的变量并设其值
rewrite 执行顺序
执行 server 块里面的 rewrite 指令。
执行 location 匹配。
执行选定的 location 中的 rewrite 指令。
flag标记说明
last :本条规则匹配完成后,继续向下匹配新的location URL规则,一般用在 server 和 if 中。
break :本条规则匹配完成即终止,不再匹配后面的任何规则,一般使用在 location 中。
redirect :返回302临时重定向,浏览器地址会显示跳转后的URL地址。
permanent :返回301永久重定向,浏览器地址栏会显示跳转后的URL地址。
rewrite和location区别
从功能看 rewrite 和 location 似乎有点像,都能实现跳转,主要区别在于 rewrite 是在同一域名内更改获取资源的路径,而 location 是对一类路径做控制访问或反向代理,还可以proxy_pass 到其他机器。
rewrite 示例
基于域名的跳转
现在公司旧域名www.lic.com有业务需求变更,需要使用新域名www.zhangbin.com代替,但是旧域名不能废除,需要跳转到新域名上,而且后面的参数保持不变。
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.lxx.com; #域名修改
charset utf-8;
access_log logs/www.lxx.com.access.log; #日志修改
location / {
#添加域名重定向
if ($host = 'www.lxx.com'){ #$host为rewrite全局变量,代表请求主机头字段或主机名
rewrite ^/(.*)$ http://www.lxxnb.com/$1 permanent; #$1为正则匹配的内容,即“域名/”之后的字符串
}
root html;
index index.html index.htm;
}
}
echo "192.168.200.111 www.lxx.com www.lxxnb.com" >> /etc/hosts
#创建test/1.html
cd /usr/local/nginx/html
mkdir test
echo "佛山谁最能打?当然是我啊难道叶问啊?" > test/1.html
systemctl restart nginx
浏览器输入模拟访问 http://www.lxx.com/test/1.html(虽然这个请求内容是不存在的)
会跳转到www.lxxnb.com/test/1.html,查看元素可以看到返回301,实现了永久重定向跳转,而8且域名后的参数也正常跳转。
基于客户端 IP 访问跳转
今天公司业务新版本上线,要求所有 IP 访问任何内容都显示一个固定维护页面,只有公司 IP :192.168.200.111访问正常。
server {
listen 80;
server_name www.lxx.com;
charset utf-8;
access_log logs/www.lxx.com.access.log;
set $rewrite true;
location ~ .(gif|jpg|png|jepg)$ {
root html;
expires 1d;
}
if ($remote_addr = "192.168.200.111"){
set $rewrite false;
}
if ($rewrite = true){
rewrite (.+) /test/2.gif;
}
location = /test/2.gif{
root /usr/local/nginx/html;
}
location / {
root html;
index index.html index.htm;
}
只有本机能跳转,其他机子直接跳转到2.gif界面
基于旧域名跳转到新域名后面加目录
现在访问的是 http://bbs.lxx.com/post/,现在需要将这个域名下面的访问都跳转到http://www.lxx.com/bbs/post/
server {
listen 80;
server_name bbs.lxx.com;
charset utf-8;
access_log logs/www.lxx.com.access.log;
# location ~ .(gif|jpg|png|jepg)$ {
# root html;
# expires 1d;
# }
location /post {
rewrite (.+) http://www.lxx.com/bbs$1 permanent;
}
location / {
root html;
index index.html index.htm;
}
mkdir -p bbs/post
echo "肉蛋葱鸡~" >> /usr/local/nginx/html/bbs/post/1.html
使用浏览器访问 http://bbs.lxx.com/post/1.html 跳转到 http://www.lxx.com/bbs/post/1.html
基于参数匹配的跳转
现在访问http://www.lxx.com/100-(100|200)-100.html 跳转到http://www.lxx.com页面。
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.lxx.com; #域名修改
charset utf-8;
access_log /var/log/nginx/www.lxx.com-access.log;
if ($request_uri ~ ^/100-(100|200)-(d+).html$) { #d代表匹配数字,+代表匹配1个或多个
rewrite (.+) http://www.lxx.com permanent;
}
location / {
root html;
index index.html index.htm;
}
}
systemctl restart nginx
$request_uri:包含请求参数的原始URI,不包含主机名,如:http://www.lxx.com/abc/bbs/index.html?a=1&b=2 中的 /abc/bbs/index.php?a=1&b=2
$uri:这个变量指当前的请求URI,不包括任何参数,如:/abc/bbs/index.html
$document_uri:与$uri相同,这个变量指当前的请求URI,不包括任何传递参数,如:/abc/bbs/index.html
使用浏览器访问 http://www.lxx.com/100-200-100.html 或 http://www.lxx.com/100-100-100.html 跳转到http://www.lxx.com页面。#100-200只能输入100或200
基于目录下所有 php 结尾的文件跳转
要求访问 http://www.lxx.com/upload/123.php 跳转到首页。
server {
listen 80;
server_name bbs.lxx.com;
charset utf-8;
access_log logs/www.lxx.com.access.log;
# location ~ .(gif|jpg|png|jepg)$ {
# root html;
# expires 1d;
# }
if ($request_uri ~ /upload/.*.php$){
rewrite (.+) http://www.lxx.com permanent;
}
location / {
root html;
index index.html index.htm;
}
浏览器访问 http://www.lxx.com/upload/123.php 跳转到http://www.lxx.com页面
基于最普通一条 url 请求的跳转
要求访问一个具体的页面如 http://www.lxx.com/abc/123.html 跳转到首页
vim /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name www.lxx.com; #域名修改
charset utf-8;
access_log /var/log/nginx/www.lxx.com-access.log;
location ~* ^/abc/666.html {
rewrite (.+) http://www.lxx.com permanent;
}
location / {
root html;
index index.html index.htm;
}
}
systemctl restart nginx
浏览器访问 http://www.lxx.com/abc/666.html跳转到http://www.lxx.com页面。
最后
以上就是默默小蚂蚁为你收集整理的Nginx之rewrite重写rewrite 示例的全部内容,希望文章能够帮你解决Nginx之rewrite重写rewrite 示例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复