server
http
location
顺序
精准匹配 = /
正则 ^~ /oldpage
最长非正则 /xxx
默认 /
特殊字符 ^~ 高于 /*
重定向
临时重定向 302 redirect
永久重定向 301 permanent
简单
1 | # 临时重定向 |
复杂
1 | if ($request_uri ~* "^/oldpage") { |
ngx_http_substitutions_filter_module
,可以用来实现更复杂的URL替换和重写功能。
精准匹配 = /
正则 ^~ /oldpage
最长非正则 /xxx
默认 /
特殊字符 ^~ 高于 /*
临时重定向 302 redirect
永久重定向 301 permanent
简单
1 | # 临时重定向 |
复杂
1 | if ($request_uri ~* "^/oldpage") { |
ngx_http_substitutions_filter_module
,可以用来实现更复杂的URL替换和重写功能。
本文标题:nginx knowledge
文章作者: 阿帅
发布时间:2024年08月12日 - 13时28分
最后更新:2024年08月12日 - 15时54分
原始链接:https://chengshea.github.io/services/nginx/baseknowledge/
许可协议: "署名-非商用-相同方式共享 3.0" 转载请保留原文链接及作者。