文章目录
一、环境准备
一台nginx服务器提供 www.test.com 的网页。
1、安装rpm源
rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
2、直接用yum安装nginx和bind
yum install nginx bind -y
3、DNS域名解析
vim /etc/named.conf
vim /etc/named.rfc1912.zones
//复制修改
zone "test.com" IN {
type master;
file "test.com.zone";
allow-update { none; };
};
4、修改nginx配置文件
vim /etc/nginx/conf.d/default.conf
5、启动服务,关闭防火墙
systemctl start named
systemctl start nginx
systemctl stop firewalld
setenforce 0
二、Rewrite 介绍
2.1、Rewrite跳转场景
- URL 看起来更规范、合理;
- 企业会将动态URL地址伪装成静态地址提供服务;
- 网址换域名后,让旧的访问跳转到新的域名上;
- 服务端某些业务调整
2.2、Rewrite 实用场景
1、Nginx跳转需求的实现方式:
- 使用rewrite进行匹配跳转;
- 使用 if 匹配全局变量后跳转;
- 使用 location 匹配再跳转
2、rewrite放在 server { },if { };location{ }段中;
3、对域名或参数字符串:
- 使用 if 全局变量匹配;
- 使用 proxy_pass 反向代理
2.3、常用的正则表达式元字符
2.4、Rewrite 命令
- 语法:
- flag标记说明
- last和break比较
2.5、location 分类
- 分类:
location = patt { } [精准匹配]
location patt { } [一般匹配]
location ~ patt { } [正则匹配] - 正则匹配的常用表达式:
2.6、location 优先级
- 相同类型的表达式,字符串长的会优先匹配;
- 按优先级排列:
- = 类型
- ^~ 类型表达式
- 正则表达式(~ 和 ~*)类型
- 常规字符串匹配类型,按前缀匹配
- 通用匹配(/),如果没有其他匹配,任何请求都会匹配到
三、具体场景
3.1、场景一:基于域名的跳转
- 实验环境:公司旧域名www.test.com,因业务需求有变更,需要使用新域名www.newtest.com代替.
- 需求:
- 不能废除旧域名
- 从旧域名跳转到新域名,且保持其参数不变
1、修改nginx的配置文件
vim /etc/nginx/conf.d/default.conf
if ($host = "www.test.com"){
rewrite ^/(.*)$ http://www.newtest.com/$1 permanent;
}
//域名重定向:表示当访问域名www.test.com时,将自动跳转到www.newtest.com域名,permanent表示永久的意思
2、DNS服务提供新域名的解析
vim /etc/named.rfc1912.zones
//复制之前的test域名声明段修改
zone "newtest.com" IN {
type master;
file "newtest.com.zone";
allow-update { none; };
};
cd /var/named/
cp -p test.com.zone newtest.com.zone
3、重启服务
systemctl stop nginx
systemctl start nginx
systemctl restart named
验证:在win10的浏览器中输入新域名www.newtest.com
3.2、场景二:基于客户端IP地址访问跳转
实验要求:今天公司业务版本上线,所有IP访问任何内容都显示一个固定维护页面,只有公司的IP才能访问正常。
公司IP地址:192.168.220.149
PC客户端:192.168.220.132
把上一个实验的nginx配置部分删除,以防影响下面的实验。
1、修改nginx的配置文件,重启服务
vim /etc/nginx/conf.d/default.conf
#设置是否合法的IP标志
set $rewrite true;
#判断是否为合法IP
if ($remote_addr = "192.168.220.149"){
set $rewrite false;
}
#非法IP进行判断打上标记
if ($rewrite = true){
rewrite (.+) /main.html;
}
#匹配标记进行跳转站点
location = /main.html {
root /usr/share/nginx/html;
}
systemctl stop nginx
systemctl start nginx
2、给 main.html 添加自定义页而内容
cd /usr/share/nginx/html
vim main.html
<html>
<head>
<meta charset="utf-8">
<title>test网站</title>
</head>
<body>
<h1>网站维护中,请稍等~~~</h1>
</body>
</html>
用公司的IP地址访问:
通过客户端IP地址访问:
3.3、场景三:基于旧、新域名跳转并加目录
例如:现在访问的是 http://ftp.test.com ,现在需要将这个域名下面的发帖都跳转到 http://www.test.com/ftp,注意保持域名跳转后的参数不变。
1、在nginx配置文件中添加以下代码
vim /etc/nginx/conf.d/default.conf
server_name ftp.test.com;
location /post {
rewrite (.+) http://www.test.com/ftp$1 permanent;
}
2、修改域名,重启服务
vim /var/named/test.com.zone
//最后一行改为:
ftp IN A 192.168.220.149
echo "nameserver 192.168.220.149" > /etc/resolv.conf
systemctl stop nginx
systemctl start nginx
systemctl restart named
3、在centos7上访问 http://ftp.test.com/post/a.html ,会帮我们自动跳转 http://www.test.com/ftp/post/a.html , 此时域名跳转后的参数并没有变还是ftp
3.4、场景四:基于参数匹配跳转
例如:浏览器访问http://www.test.com/100-(100|200)-100.html,会自动跳转到 http://www.test.com 的页面。
1、修改nginx的配置文件,添加以下代码
vim /etc/nginx/conf.d/default.conf
server_name www.test.com;
if ($request_uri ~ ^/100-(100|200)-(\d+).html$) {
rewrite (.*) http://www.test.com permanent;
}
2、DNS解析www。并重启服务
vim /var/named/test.com.zone
//最后一行改为:
www IN A 192.168.220.149
systemctl stop nginx
systemctl start nginx
systemctl restart named
3、在浏览器访问 http://www.test.com/100-100-100.html,就会帮我们自动跳转到www.test.com网站
3.5、场景五:基于目录下所有php文件跳转
例如,我们访问 http://www.test.com/upload/1.php,会自动跳转到首页www.test.com。
1、修改nginx的配置文件,添加以下代码
vim /etc/nginx/conf.d/default.conf
server_name www.test.com;
location ~* /upload/.*\.php$ {
rewrite (.+) http://www.test.com permanent;
}
2、重启服务
systemctl stop nginx
systemctl start nginx
3、在浏览器上访问 http://www.test.com/upload/1.php ,就会帮我们自动跳转到 www.test.com网页。
3.6、场景六:基于最普通 url 请求的跳转
场景说明:我们访问一个具体的页面都会帮我们跳转到首页www.test.com
例如:我们在网页上访问一个具体网址 http://www.test.com/abc/1.html ,就会帮我们跳转到首页 www.test.com。
1、在nginx配置文件中添加以下代码
vim /etc/nginx/conf.d/default.conf
server_name www.test.com;
location ~* /abc/1.html{
rewrite (.+) http://www.test.com permanent;
}
2、重启服务
systemctl stop nginx
systemctl start nginx
3、验证:浏览器访问 http://www.test.com/abc/1.html,会自动跳转到 www.test.com
来源:CSDN
作者:爱美的小菇凉
链接:https://blog.csdn.net/qq_28361541/article/details/103704240