IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> 使用rewrite规则实现将所有到a域名的访问rewrite到b域名 -> 正文阅读

[系统运维]使用rewrite规则实现将所有到a域名的访问rewrite到b域名

使用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

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-04-06 16:28:46  更:2022-04-06 16:32:02 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 22:22:01-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码