nginx 使用字符串替换进行 URL 重写

nginx 使用字符串替换进行 URL 重写

我需要捕获我的 url 是否包含一个小的 substr,保持 url 原样并仅重写那一小部分,我该如何做到这一点?

例如:

http://foobar.com/foo-bar-substrtocatch-baz 

应该成为

http://foobar.com/foo-bar-changedsubstr-baz

提前致谢...

答案1

rewrite    ^(.*)substrtocatch(.*)$    $1changedsubstr$2;

相关内容