nginx测试rewrite

nginx测试rewrite

last :相当于 Apache 里的(L)标记,表示完成rewrite 匹配;
break: 本条规则匹配完成后,终止匹配,不再匹配后面的规则。
# 其中last 和 break 用来实现 URL 重写时,浏览器地址栏URL 地址不变
redirect: 返回 302 临时重定向,浏览器地址会显示跳转后的 URL 地址。
permanent: 返回 301永久重定向,浏览器地址栏会显示跳转后的URL 地址
#不配置将显示304
[root@node1 ~]# yum -y install gcc make pcre-devel openssl-devel
[root@node1 ~]# tar xf nginx-1.22.1.tar.gz
[root@node1 ~]# cd nginx-1.22.1/
[root@node1 nginx-1.22.1]# ./configure  --prefix=/usr/local/nginx  --user=nginx  --with-http_ssl_module
[root@node1 nginx-1.22.1]#  make && make install
[root@node1 nginx-1.22.1]# useradd nginx -s /sbin/nologin
[root@node1 nginx-1.22.1]# /usr/local/nginx/sbin/nginx
[root@node1 nginx-1.22.1]# cd /usr/local/nginx/
[root@node1 nginx]# mkdir html/static
[root@node1 nginx]# echo "html/static/index.html">html/static/index.html
[root@node1 nginx]# echo "html/static/node1.html">html/static/node1.html#访问显示
http://www.myweb.com/static/ -->  html/static/index.html
http://www.myweb.com/static/test.html -->  html/static/test.html
http://www.myweb.com/forum.php -->  404 Not Found

last :相当于 Apache 里的L)标记,表示完成rewrite 匹配;

break: 本条规则匹配完成后,终止匹配,不再匹配后面的规则。

redirect: 返回 302 临时重定向,浏览器地址会显示跳转后的URL 地址。

permanent: 返回301永久重定向,浏览器地址栏会显示跳转后的 URL 地址。

其中 last 和 break 用来实现 URL 重写时,浏览器地址栏URL 地址不变。

#访问  http://www.myweb.com/forum.php  -跳转->  html/static/test.htmlserver {listen       80;server_name www.myweb.com;# 本地目录重写# 状态码304 地址栏不变化  http://www.myweb.com/forum.phprewrite ^/forum.php$ /static/node1.html last;  # 状态码304 地址栏不变化  http://www.myweb.com/forum.phprewrite ^/forum.php$ /static/node1.html break;  # 状态码301 地址栏变为http://www.myweb.com/static/test.htmlrewrite ^/forum.php$ /static/test.html permanent;# 状态码302 地址栏变为http://www.myweb.com/static/test.htmlrewrite ^/forum.php$ http://www.myweb.com/static/test.html last;#本站 url跳转  url地址栏变化, last、break、redirect都是302# 状态码302 地址栏变为http://www.myweb.com/static/test.htmlrewrite ^/forum.php$ http://www.myweb.com/static/test.html last;#forum.php状态码301 地址栏变为http://www.myweb.com/static/test.htmlrewrite ^/forum.php$ http://www.myweb.com/static/test.html permanent;# 跳百度# forum.php状态码302 地址栏变为 http://www.baidu.comrewrite ^/forum.php$ http://www.baidu.com break; # last、redirect也是302#forum.php状态码301 地址栏变为 http://www.baidu.comrewrite ^/forum.php$ http://www.baidu.com permanent;location / {...浏览器Disable cache 访问
    location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ {root html; # 绝对路径也可以完成访问   /usr/local/nginx/html;}

[root@node1 baidu]# wget -r -x http://fjxplz.com/1004.html[root@node1 html] mkdir weihu
[root@node1 html]# echo   "维护中...">weihu/index.html#  http://www.myweb.com   维护
server {listen       80;server_name www.myweb.com;# 3、最终还是跳到维护页面rewrite ^/forum.php$ http://www.myweb.com/static/test.html permanent  ;# 2、加了rewrite后跳转,跟下面的location的上下顺序影响rewrite ^/(.*)$ /weihu/index.html last;  # 所有页都跳维护页rewrite ^/$ /weihu/index.html last;   # 根页跳到维护页#rewrite ^/(.*)$ /weihu/index.html last;# 1、不加上面的rewrite时,默认首页 location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ {#    location / {   与上面一样root html; # 绝对路径也可以完成访问   /usr/local/nginx/html;}        # 3、最终还是跳到维护页面http://www.myweb.com/forum.php--》static  --》2 /weihu/
192.168.1.11 - -  "GET /forum.php HTTP/1.1" 301 169 "-" "Wget/1.14 (linux-gnu)"
192.168.1.11 - -  "GET /static/test.html HTTP/1.1" 200 13 "-" "Wget/1.14 (linux-gnu)"
server {listen       80;server_name www.myweb.com;# 一直会301跳转,看日志或者wget看下过程rewrite ^/(.*)$ /weihu/index.html permanent;  # wget下或者看日志# 传递参数rewrite ^/(.*)$  http://www.baidu.com/$1 permanent;# myweb.com 跳转到baiduif ($host = 'myweb.com') {rewrite ^/(.*)$  http://www.myweb.com/$1 permanent;}

wget 查看

[root@node1 conf]# wget myweb.com
--2023-10-21 17:32:25--  http://myweb.com/
Resolving myweb.com (myweb.com)... 192.168.1.11
Connecting to myweb.com (myweb.com)|192.168.1.11|:80... connected.
HTTP request sent, awaiting response... 301 Moved Permanently  # permanent
Location: http://www.myweb.com/ [following]
--2023-10-21 17:32:25--  http://www.myweb.com/	# 跳转后的 
Resolving www.myweb.com (www.myweb.com)... 192.168.1.11
Reusing existing connection to myweb.com:80.
HTTP request sent, awaiting response... 200 OK
Length: 13 [text/html]
Saving to: ‘index.html.2’# myweb.com 跳转到www.myweb.comif ($host = 'myweb.com') {rewrite ^/(.*)$  http://www.myweb.com/$1 last; # last不是上面的permanent}
[root@node1 conf]# wget myweb.com
--2023-10-21 17:30:57--  http://myweb.com/
Resolving myweb.com (myweb.com)... 192.168.1.11
Connecting to myweb.com (myweb.com)|192.168.1.11|:80... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily #302  last
Location: http://www.myweb.com/ [following]
--2023-10-21 17:30:57--  http://www.myweb.com/	# 跳转后的   
Resolving www.myweb.com (www.myweb.com)... 192.168.1.11
Reusing existing connection to myweb.com:80.
HTTP request sent, awaiting response... 200 OK
Length: 13 [text/html]
Saving to: ‘index.html.1’

多种域名跳转

# 多种域名跳转if ($host != 'myweb.com'){rewrite ^/(.*)s http://www.myweb.com/$1 permanent;}
# 不存在的页面跳转    if ( !-e $request_filename){rewrite ^/(.*)$ /weihu/index.html last;}# 火狐浏览器跳转   if ($http_user_agent ~ firefox) { rewrite  ^/index.html$  /firefox/index.html;}

Nginx:Rewrite跳转+正则表达式+6个生产案列!内容过于真实

https://blog.csdn.net/weixin_48190891/article/details/108532802

Nginx rewrite常用全局变量详细介绍

https://blog.csdn.net/Blue92120/article/details/129003292

upstream lmsManagerAuth-backend {
server 7.180.171.42:8100 max_fails=3 fail_timeout=10s;
}location ~ ^/edx/lmsManagerAuth/api/datacenter/.*{rewrite /edx/lmsManagerAuth/(.*)  /$1 break;  #截取保留重写为api/datacenter/.*proxy_pass http://lmsManagerAuth-backend;
www.myweb.com.zh		www.myweb.com/zh
www.myweb.com.en		www.myweb.com/en在原来的配置文件/usr/local/nginx/conf/nginx.conf的http{}内末尾处加一句:
include /usr/local/nginx/conf.d/*.conf;[root@node1 nginx]# mkdir -p /usr/local/nginx/conf.d/
[root@node1 nginx]# vim conf.d/www.myng.com.conf
server {listen 80;server_name www.myng.com;location / {root /code;index index.html;
}
[root@node1 nginx]# mkdir -p /code/{zh,en}[root@node1 nginx]# echo  zh>/code/zh/index.html
[root@node1 nginx]# echo  en>/code/en/index.html
[root@node1 nginx]# echo code>/code/index.html
[root@node1 html]# curl  www.myng.com
code
[root@node1 html]# curl  www.myng.com/en/
en
[root@node1 html]# curl  www.myng.com/zh/   #浏览器里默认加/ 
zhserver {listen 80;server_name www.myng.com.zh  www.myng.com.en;root /code;index index.html;location / {if ($http_host ~* 'zh'){   #$http_host 请求的host的#$http_accept_language  浏览器请求头里的语言标识#$http_user_agent  ~* "iphone|ipad|androaid"   基于agentset $language zh;}if ($http_host ~* 'en'){set $language en;}  rewrite ^/$ http://www.myng.com/$language redirect;}
http://www.myng.com.zh/     --跳转-->  http://www.myng.com/zh/

curl -Lv

[root@node1 html]# curl -Lv  www.myng.com.zh    #会自动重定向后边指定的网址
* About to connect() to www.myng.com.zh port 80 (#0)
*   Trying 192.168.1.11...
* Connected to www.myng.com.zh (192.168.1.11) port 80 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.29.0
> Host: www.myng.com.zh
> Accept: */*
>
< HTTP/1.1 302 Moved Temporarily
< Server: nginx/1.22.1
< Date: Sun, 22 Oct 2023 12:53:43 GMT
< Content-Type: text/html
< Content-Length: 145
< Connection: keep-alive
< Location: http://www.myng.com/zh
<
* Ignoring the response-body
* Connection #0 to host www.myng.com.zh left intact
* Issue another request to this URL: 'http://www.myng.com/zh'
* About to connect() to www.myng.com port 80 (#1)
*   Trying 192.168.1.11...
* Connected to www.myng.com (192.168.1.11) port 80 (#1)
> GET /zh HTTP/1.1
> User-Agent: curl/7.29.0
> Host: www.myng.com
> Accept: */*
>
< HTTP/1.1 301 Moved Permanently
< Server: nginx/1.22.1
< Date: Sun, 22 Oct 2023 12:53:43 GMT
< Content-Type: text/html
< Content-Length: 169
< Location: http://www.myng.com/zh/
< Connection: keep-alive
<
* Ignoring the response-body
* Connection #1 to host www.myng.com left intact
* Issue another request to this URL: 'http://www.myng.com/zh/'
* Found bundle for host www.myng.com: 0x2014450
* Re-using existing connection! (#1) with host www.myng.com
* Connected to www.myng.com (192.168.1.11) port 80 (#1)
> GET /zh/ HTTP/1.1
> User-Agent: curl/7.29.0
> Host: www.myng.com
> Accept: */*
>
< HTTP/1.1 200 OK
< Server: nginx/1.22.1
< Date: Sun, 22 Oct 2023 12:53:43 GMT
< Content-Type: text/html
< Content-Length: 3
< Last-Modified: Sun, 22 Oct 2023 11:48:01 GMT
< Connection: keep-alive
< ETag: "65350bf1-3"
< Accept-Ranges: bytes
<
zh
* Connection #1 to host www.myng.com left intact
# 不加-L选项的
[root@node1 html]# curl -v  www.myng.com.zh
* About to connect() to www.myng.com.zh port 80 (#0)
*   Trying 192.168.1.11...
* Connected to www.myng.com.zh (192.168.1.11) port 80 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.29.0
> Host: www.myng.com.zh
> Accept: */*
>
< HTTP/1.1 302 Moved Temporarily
< Server: nginx/1.22.1
< Date: Sun, 22 Oct 2023 12:54:30 GMT
< Content-Type: text/html
< Content-Length: 145
< Connection: keep-alive
< Location: http://www.myng.com/zh
<
<html>
<head><title>302 Found</title></head>
<body>
<center><h1>302 Found</h1></center>
<hr><center>nginx/1.22.1</center>
</body>
</html>
* Connection #0 to host www.myng.com.zh left intact

根据浏览器,agent跳转

server {listen 80;server_name www.myng.com.zh  www.myng.com.en;root /code;index index.html;location / {
#场景1: 根据用户浏览器的语言,自动跳转至不同的页面。	if ($http_accept_language ~* 'zh'){   set $language zh;}if ($http_accept_language ~* 'en'){set $language en;}  rewrite ^/$ http://www.myng.com/$language redirect;}#2: 根据用户来源终端设备跳转至不同站点或不同域名if ($http_user_agent  ~* "iphone|ipad|androaid"){rewrite ^/$ http://www.myng.com/m;}#3:传递跳转的uriif ($http_user_agent  ~* "iphone|ipad|androaid"){return 302 http://www.myng.com$request_uri;  #将uri传递}

api地址跳转

#api.myng.com/bbb   www.myng.com/api/bbbserver {listen 80;server_name api.myng.com;if ($http_host ~* (.*)\.(.*)\.(.*)){set $domain $1;}rewrite ^/(.*)$  http://www.myng.com/$domain/$1 last;
}

维护页面

server {listen 80;server_name www.myng.com.zh  www.myng.com.en;root /code;rewrite ^/(.*)$ /wh.html break; #放在server下location / {...

根据状态码跳转

server {listen 80;server_name www.myng.com;root /code;index index.html;
...    error_page   500 502 503 504  =@temp;location @temp {root /data/errorrewrite ^/(.*)$ /wh.html break; #放在server下	}

根据ip区分用户

server {listen 80;server_name www.myng.com;root /code;set $ip 0;if ($remote_addr ~ "10.0.0.1") { #X-Forwarded-For代理ipset $ip 1;}if  ($ip=0){rewrite  ^/(.*)$ /wh.html break; #放在server下}

return 返回跳转

需求: 如果用户请求www.myng.com/test,则返回至ww.xuliangwei.com的urlserver {listen 80;server_name www.myng.com;location / {default_type text/html;# 需要设置--》识别返回字符串if ($request_uri  ~* '^/test'){return 200 "return test";#return 302 http://www.baidu.com;   #302跳转到百度}root /code;index index.html;}
}#浏览器访问:返回
http://www.myng.com/test     return test

last break

当rewrite规则遇到break后,本locationf与其他ocation的所有rewrite/return规则都不再执行。
当rewrite规则遇到last后,本locationh里后续rewrite/return规则不执行,但重写后的url再次从头开始执行所有规则,哪个匹配执行哪个

server {listen 80;server_name www.myng.com;root /code;location / {#http://www.myng.com/1.html    b.htmlrewrite /1.html /2.html;#http://www.myng.com/1.html    2.html#rewrite /1.html /2.html break; #break终止,不再匹配#http://www.myng.com/1.html    a.html #rewrite /1.html /2.html last; #last终止当前location的匹配rewrite /2.html /3.html;}location /2.html {rewrite /2.html /a.html;}location /3.html {rewrite /3.html /b.html;}
}[root@node1 nginx]# echo 1.html>/code/1.html
[root@node1 nginx]# echo 2.html>/code/2.html
[root@node1 nginx]# echo 3.html>/code/3.html
[root@node1 nginx]# echo a.html>/code/a.html
[root@node1 nginx]# echo b.html>/code/b.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/114946.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

基于nodejs+vue市民健身中心网上平台mysql

市民健身中心网上平台分为用户界面和管理员界面&#xff0c; 用户信息模块&#xff1a;管理员可在后台添加、删除普通用户&#xff0c;查看、编辑普通用户的信息。 课程表管理模块&#xff1a;管理员可对课程表进行修改任课教师、新增某一堂课、删除某一堂课、查找课程、修改…

codeforces (C++ Chemistry)

题目&#xff1a; 翻译&#xff1a; 思路&#xff1a; 1、n组数据&#xff0c;每组输入两个数t,k和一个字符串&#xff0c;删除k个字符&#xff0c;剩下的字符能组成回文&#xff0c;则输出YES&#xff0c;否则输出NO。 2、用map记录字符串中每个字符出现的次数&#xff0c;su…

使用screen实现服务器代码一直运行

1.安装screen sudo apt install screen 2.创建一个screen&#xff08;创建一个名为chatglm的新的链接&#xff0c;用来一直运行 screen -S chatglm 3.查看进程列表 screen -ls 创建之后&#xff0c;就可以在当前窗口利用cd命令进入要执行的项目中&#xff0c;开始执行&#xf…

Openssl数据安全传输平台007:共享内存及代码的实现 ——待完善项目具体代码和逻辑

文章目录 0. 代码仓库1. 使用流程案例代码&#xff1a; 2. API解析2.1 创建或打开一块共享内存区2.2 将当前进程和共享内存关联到一起2.3 将共享内存和当前进程分离2.4 共享内存操作 -&#xff08; 删除共享内存 &#xff09; 3. 思考问题3. ftok函数4. 共享内存API封装-以本项…

基于SSM的仓库管理系统

基于SSM的仓库管理系统的设计与实现【文末源码】 开发语言&#xff1a;Java数据库&#xff1a;MySQL技术&#xff1a;SpringSpringMVCMyBatisVue工具&#xff1a;IDEA/Ecilpse、Navicat、Maven 系统展示 登录界面 管理员界面 员工管理 货物管理 员工界面 摘要 当考虑构建基于…

[ 云计算 | AWS 实践 ] Java 如何重命名 Amazon S3 中的文件和文件夹

本文收录于【#云计算入门与实践 - AWS】专栏中&#xff0c;收录 AWS 入门与实践相关博文。 本文同步于个人公众号&#xff1a;【云计算洞察】 更多关于云计算技术内容敬请关注&#xff1a;CSDN【#云计算入门与实践 - AWS】专栏。 本系列已更新博文&#xff1a; [ 云计算 | …

day01_matplotlib_demo

文章目录 折线图plot多个绘图区绘制数学函数图像散点图scatter柱状图bar直方图histogram饼图pie总结 折线图plot import matplotlib.pyplot as pltplt.figure(figsize(15, 6), dpi80) plt.plot([1, 0, 9], [4, 5, 6]) plt.show()### 展现一周天气温度情况 # 创建画布 plt.figu…

留意差距:弥合网络安全基础设施的挑战

您最近一直在关注日益增加的网络威胁吗&#xff1f;如果您发现自己沉浸在 IT 或技术中&#xff0c;那么您可能会永远追求与时俱进。每天都会出现新的漏洞&#xff0c;这对保持消息灵通提出了巨大的挑战。 构建和维护能够应对复杂攻击者的网络安全基础设施所面临的挑战是真实存…

Vue3中getCurrentInstance()方法详解

proxy只是一个变量名&#xff0c;翻译过来是“代理”的意思 当你使用 const { proxy } getCurrentInstance() 这句代码时&#xff0c;它执行了以下步骤&#xff1a; getCurrentInstance() 是 Vue 3 中的一个函数&#xff0c;用于获取当前正在执行的 Vue 组件实例的上下文信息…

最新AI智能写作创作系统源码V2.6.4/AI绘画系统/支持GPT联网提问/支持Prompt应用

一、AI创作系统 SparkAi创作系统是基于OpenAI很火的ChatGPT进行开发的Ai智能问答系统AI绘画系统&#xff0c;支持OpenAI GPT全模型国内AI全模型。本期针对源码系统整体测试下来非常完美&#xff0c;可以说SparkAi是目前国内一款的ChatGPT对接OpenAI软件系统。那么如何搭建部署…

敢问路在何方

从2022年进入软件行业到现在&#xff0c;二十二年眨眼之间过去了&#xff0c;依然奋斗在编码第一线&#xff0c;挣扎在第一线&#xff0c;借此程序员佳节之际回顾一下这许多年的历程。 由于本人混得实在不好&#xff0c;工作过的地方都用某单位某公司来代替实际的&#xff0c;到…

点云从入门到精通技术详解100篇-基于路侧激光雷达的交通目标感知方法与实现(下)

目录 4.2交通目标类型划分 4.3目标点云关键特征提取 4.3.1点云目标空间结构特征

python解析robot framework的output.xml并生成html

一、用pyh模块解析stat结点数据&#xff08;output.py&#xff09; #codingutf-8import xml.dom.minidom import xml.etree.ElementTree#打开xml文档 dom xml.dom.minidom.parse(./ui/output.xml);root2 xml.etree.ElementTree.parse(./ui/output.xml) #得到文档元素对象 ro…

Windows 安装 Java

1. 安装 JDK 从 Oracle 的官网下载的 JDK&#xff0c;例如 JDK 21 双击下载得到的 msi 文件&#xff0c;开始安装 JDK 选择要安装的文件路径&#xff08;我一般都默认&#xff09;&#xff1a; 等待安装&#xff1a; 安装完成&#xff1a; 2. 验证是否安装成功 2.1. 打开 cmd…

【JavaEE重点知识归纳】第10节:Object类和String类

目录 一&#xff1a;Object类 1.概念 2.获取对象信息 3.对象比较equals方法 4.hashCode方法 二&#xff1a;String类 1.String类的重要性 2.常用方法 3.StringBuilder和StringBuffer 一&#xff1a;Object类 1.概念 &#xff08;1&#xff09;Object类是Java默认提供…

Easyx趣味编程7,鼠标消息读取及音频播放

hello大家好&#xff0c;这里是dark flame master&#xff0c;今天给大家带来Easyx图形库最后一节功能实现的介绍&#xff0c;前边介绍了绘制各种图形及键盘交互&#xff0c;文字&#xff0c;图片等操作&#xff0c;今天就可以使写出的程序更加生动且容易操控。一起学习吧&…

ARM开发流程LDS相关解惑

最近在学习ARM CPU软硬件开发&#xff0c;对于软件代码执行的入口地址以及软件代码在SRAM中的位置分布有些疑惑&#xff0c;特将学习过程记录一下。 1. 程序入口地址 对于ARM CPU&#xff0c;异常向量表的地址是固定的&#xff0c;通常位于 0x00000000 或 0xFFFF0000。在这种…

算法通过村第十五关-超大规模|黄金笔记|超大规模场景

文章目录 前言对20GB文件进行排序超大文本中搜索两个单词的最短距离从10亿数字中寻找小于100万个数字总结 前言 提示&#xff1a;你生命的前半辈子或许属于别人&#xff0c;活在别人的认为里。那把后半辈子还给自己&#xff0c;去追随你内在的声音。 --荣格 理解了前面的几个题…

sqlserver repalce模糊替换

由于SQL Server的REPLACE函数用于替换字符串中的指定子字符串。它执行的是精确替换&#xff0c;所以想进行模糊替换或基于模式的替换&#xff0c;需要结合REPLACE使用CHARINDEX和SUBSTRING函数。 简单的介绍一下CHARINDEX函数和SUBSTRING函数&#xff1a; CHARINDEX(substrin…