使用rewrite规则实现将所有到a域名的访问rewrite到b域名
rewrite flag 使用介绍
利用nginx的rewrite的指令,可以实现url的重新跳转,rewrite有四种不同的flag,分别是redirect(临时重定向302)、permanent(永久重定向301)、break和last。其中前两种是跳转型的flag,后两种是代理型的flag
- 跳转型指由客户端浏览器重新对新地址进行请求
- 代理型是在WEB服务器内部实现跳转
rewrite 格式
Syntax: rewrite regex replacement [flag]; #通过正则表达式处理用户请求并返回替换后的数据包。
Default: —
Context: server, location, if
flag 说明
redirect;
#临时重定向,重写完成后以临时重定向方式直接返回重写后生成的新URL给客户端,由客户端重新发起请求;
使用相对路径,或者http://或https://开头,状态码:302
permanent;
#重写完成后以永久重定向方式直接返回重写后生成的新URL给客户端,由客户端重新发起请求,状态码:301
break;
#重写完成后,停止对当前URL在当前location中后续的其它重写操作,而后直接跳转至重写规则配置块之后
的其它配置;结束循环,建议在location中使用
#适用于一个URL一次重写
last;
#重写完成后,停止对当前URI在当前location中后续的其它重写操作,而后对新的URL启动新一轮重写检查,
不建议在location中使用
#适用于一个URL多次重写,要注意避免出现超过十次以及URL重写后返回错误的给用户
1、301永久重定向
域名永久型调整,即域名永远跳转至另外一个新的域名,之前的域名再也不使用,跳转记录可以缓存到客户端浏览器
永久重定向会缓存DNS解析记录,浏览器中有 from disk cache 信息,即使nginx服务器无法访问,浏览器也会利用缓存进行重定向
#实现单页301重定向
[root@centos7 conf.d]#pwd
/apps/nginx/conf/conf.d
[root@centos7 conf.d]#vim pc.conf
server{
listen 80;
server_name www.linux2022.com;
location / {
root /data/nginx/html/pc;
}
location /gz {
rewrite ^/gz/(.*) /guangzhou/$1 permanent;
}
}
[root@centos7 conf.d]#nginx -t
[root@centos7 conf.d]#nginx -s reload
[root@centos7 conf.d]#cd /data/nginx/html/pc/
[root@centos7 pc]#mkdir guangzhou/
[root@centos7 pc]#pwd
/data/nginx/html/pc
[root@centos7 pc]#pwd > guangzhou/index.html
[root@centos7 pc]#vim guangzhou/index.html
/data/nginx/html/pc/guangzhou/index.html
#测试验证
[root@ubuntu1804 ~]#curl www.linux2022.com/gz/
<html>
<head><title>301 Moved Permanently</title></head>
<body>
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
[root@ubuntu1804 ~]#curl www.linux2022.com/gz/ -L
/data/nginx/html/pc/guangzhou/index.html
[root@ubuntu1804 ~]#curl www.linux2022.com/guangzhou/ -L
/data/nginx/html/pc/guangzhou/index.html
#实现域名301重定向
[root@centos7 conf.d]#pwd
/apps/nginx/conf/conf.d
[root@centos7 conf.d]#vim pc.conf
server{
listen 80;
server_name www.linux2022.com;
location / {
root /data/nginx/html/pc;
rewrite / http://www.linux2022.cn permanent;
}
location /gz {
rewrite ^/gz/(.*) /guangzhou/$1 permanent;
}
}
server{
listen 80;
server_name www.linux2022.cn;
location / {
root /data/nginx/html/product/;
}
}
[root@centos7 conf.d]#nginx -t
[root@centos7 conf.d]#nginx -s reload
[root@centos7 conf.d]#cd /data/nginx/html/pc/
[root@centos7 pc]#mkdir product
[root@centos7 pc]#vim product/index.html
www.linux2022.cn/product
#测试验证
[root@ubuntu1804 ~]#vim /etc/hosts
10.0.0.7 www.linux2022.com m.linux2022.com www.linux2022.cn
[root@ubuntu1804 ~]#curl www.linux2022.com -I
HTTP/1.1 301 Moved Permanently
Server: nginx
Date: Tue, 05 Apr 2022 04:28:45 GMT
Content-Type: text/html
Content-Length: 162
Connection: keep-alive
Location: http://www.linux2022.cn
2、302 临时重定向
域名临时重定向,告诉浏览器域名不是固定重定向到当前目标域名,后期可能随时会更改,因此浏览器不会缓存当前域名的解析记录,而浏览器会缓存永久重定向的DNS解析记录,这也是临时重定向与永久重定向最大的本质区别 。
#实现域名302临时重定向
[root@centos7 conf.d]#pwd
/apps/nginx/conf/conf.d
[root@centos7 conf.d]#vim pc.conf
server{
listen 80;
server_name www.linux2022.com;
location / {
root /data/nginx/html/pc;
rewrite / http://www.linux2022.cn redirect;
}
}
[root@centos7 conf.d]#nginx -t
[root@centos7 conf.d]#nginx -s reload
#测试验证
[root@ubuntu1804 ~]#curl www.linux2022.com -I
HTTP/1.1 302 Moved Temporarily
Server: nginx
Date: Tue, 05 Apr 2022 05:00:12 GMT
Content-Type: text/html
Content-Length: 138
Connection: keep-alive
Location: http://www.linux2022.cn