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 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> Nginx return 响应码重定向 -> 正文阅读

[系统运维]Nginx return 响应码重定向

前提环境:

  • NGINX

涉及参考文档:

一、Nginx return 语法介绍

Syntax:	return code [text];
		return code URL;
		return URL;
Default:	—
Context:	server, location, if

停止处理并 将指定的返回code给客户端。非标准代码 444 关闭连接而不发送响应头。

: Nginx 版本 0.8.42 开始

  • return code URL 支持code 响应码: 301、302、303、307 和 308
  • return code [text] 支持code 响应码:204、400、402 — 406、408、410、411、413、416 和 500 — 504 以及 444 响应码
代码 307 直到版本 1.1.16 和 1.0.13 才被视为重定向。
代码 308 直到版本 1.13.0 才被视为重定向。


二、return code [text] 验证

Nginx 配置文件

server {
        listen       4444;
        server_name  _;
        charset      utf-8;
        root   /data/nginx/domain/;

        rewrite_log     on;  #开启rewrite重写规则默认写到error_log日志中,生产禁用,默认是关闭状态
        error_log       /var/log/nginx/bot-sca-error.log;
        access_log      /var/log/nginx/bot-sca-access.log testlog;

        location /444.html {
                return 444 "你的客户端IP地址是: $remote_addr";  # 设定客户端响应码为444,且返回客户地址IP
        }
}

在这里插入图片描述

修改Nginx 配置文件

server {
        listen       4444;
        server_name  _;
        charset      utf-8;
        root   /data/nginx/domain/;

        rewrite_log     on;
        error_log       /var/log/nginx/bot-sca-error.log;
        access_log      /var/log/nginx/bot-sca-access.log testlog;



        location /tz {
                return   http://www.baidu.com;  #默认响应码302
        }


        location /ips.html {
                return  200 "你的客户端IP地址是: $remote_addr";   # 设定客户端响应码为200,且返回客户地址IP
        }
}

在这里插入图片描述

总结:
return code [text] ,Nginx 配置中 设定 return code 状态码,客户端访问URI 返回相应的响应码。


三、return code URL 验证

Nginx 配置文件【code = 302】

server {
        listen       4444;
        server_name  _;
        charset      utf-8;
        root   /data/nginx/domain/;

        rewrite_log     on;
        error_log       /var/log/nginx/bot-sca-error.log;
        access_log      /var/log/nginx/bot-sca-access.log testlog;



        location /tz {
                return   http://www.baidu.com;  #默认响应码302
        }



        location /ips.html {
                return  200 "你的客户端IP地址是: $remote_addr";
        }


        location /aliyun {
                return   302  https://www.aliyun.com/; #临时重定向
        }
}

访问: http://192.168.11.100:4444/aliyun

  • 白屏访问 :

在这里插入图片描述
在这里插入图片描述

  • 黑屏访问 :
    在这里插入图片描述

Nginx 配置文件【code = 301】

server {
        listen       4444;
        server_name  _;
        charset      utf-8;
        root   /data/nginx/domain/;

        rewrite_log     on;
        error_log       /var/log/nginx/bot-sca-error.log;
        access_log      /var/log/nginx/bot-sca-access.log testlog;



        location /tz {
                return   http://www.baidu.com;  #默认响应码302
        }



        location /ips.html {
                return  200 "你的客户端IP地址是: $remote_addr";
        }


        location /aliyun {
                return   301  https://www.aliyun.com/; #永久重定向
        }
}

重新加载nginx配置:

 nginx -s  reload 

访问: http://192.168.11.100:4444/aliyun

  • 白屏访问 :

在这里插入图片描述
在这里插入图片描述

  • 黑屏访问 :
    在这里插入图片描述
总结:
将Nginx 配置文件修改访问到其他网站,一直访问也是阿里云的官方网址, 这就是301 永久重定向代码有关。 如果浏览器想访问修改重定向的网址需要清空浏览器的缓存。
  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2021-11-29 16:40:48  更:2021-11-29 16:42:46 
 
开发: 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/16 2:14:31-

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