LOGO OA教程 ERP教程 模切知识交流 PMS教程 CRM教程 开发文档 其他文档  
 
网站管理员

nginx作为正向和反向代理服务器还能修改http响应体内容

admin
2025年6月28日 22:22 本文热度 30
  1. ngx_http_sub_module模块可以通过字符串替换的方式修改响应体内容。默认未安装,需要在configure阶段指定--with-http_sub_module参数。
  2. sub_filter指令用于替换响应内容,语法格式为sub_filter string replacement,string表示被替换内容,replacement为替换后的内容。可配置在http, server, location块中。
  3. sub_filter_once指令用于设置查找到的字符串仅替换一次还是全部替换。语法为sub_filter_once on | off,默认值on表示仅替换一次,off表示全部替换。
  4. sub_filter_last_modified指令用于控制在使用sub_filter修改响应体内容后原始响应头中Last-Modified字段是否保留。默认值off表示不保留,on表示保留。语法为sub_filter_last_modified on | off
  5. 测试
    • Thank you改为Thanks

      server {
       listen 80;
       server_name localhost;

       location / {
        root html;
        sub_filter 'Thank you' 'Thanks';
       }
      }
    • 将nginx全部替换为NGINX

      server {
       listen 80;
       server_name localhost;

       location / {
        root html;
        sub_filter 'nginx' 'NGINX';
        sub_filter_once off;
       }
      }
    • 同时修改多项内容

      server {
       listen 80;
       server_name localhost;

       location / {
        root html;
        sub_filter 'nginx''NGINX';
        sub_filter '<head>''<head><meta charset="UTF-8">'
        sub_filter 'server''服务器';
        sub_filter 'Welcome to''欢迎来到';
        sub_filter_once off;
       }
      }
    • 修改代理返回的内容

      server {
       listen 80;
       server_name localhost;

       location / {
        root html;
        sub_filter 'nginx''NGINX';
        sub_filter '<head>''<head><meta charset="UTF-8">'
        sub_filter 'server''服务器';
        sub_filter 'Welcome to''欢迎来到';
        sub_filter_once off;
       }

       location /api/ {
        proxy_pass http://192.168.1.16:8086/;
        sub_filter '-''/';
        sub_filter_once off;
       }
      }


阅读原文:原文链接


该文章在 2025/7/1 23:46:04 编辑过
关键字查询
相关文章
正在查询...
点晴ERP是一款针对中小制造业的专业生产管理软件系统,系统成熟度和易用性得到了国内大量中小企业的青睐。
点晴PMS码头管理系统主要针对港口码头集装箱与散货日常运作、调度、堆场、车队、财务费用、相关报表等业务管理,结合码头的业务特点,围绕调度、堆场作业而开发的。集技术的先进性、管理的有效性于一体,是物流码头及其他港口类企业的高效ERP管理信息系统。
点晴WMS仓储管理系统提供了货物产品管理,销售管理,采购管理,仓储管理,仓库管理,保质期管理,货位管理,库位管理,生产管理,WMS管理系统,标签打印,条形码,二维码管理,批号管理软件。
点晴免费OA是一款软件和通用服务都免费,不限功能、不限时间、不限用户的免费OA协同办公管理系统。
Copyright 2010-2025 ClickSun All Rights Reserved