我需要捕获我的 url 是否包含一个小的 substr,保持 url 原样并仅重写那一小部分,我该如何做到这一点?
例如:
http://foobar.com/foo-bar-substrtocatch-baz
应该成为
http://foobar.com/foo-bar-changedsubstr-baz
提前致谢...
答案1
rewrite ^(.*)substrtocatch(.*)$ $1changedsubstr$2;
我需要捕获我的 url 是否包含一个小的 substr,保持 url 原样并仅重写那一小部分,我该如何做到这一点?
例如:
http://foobar.com/foo-bar-substrtocatch-baz
应该成为
http://foobar.com/foo-bar-changedsubstr-baz
提前致谢...
rewrite ^(.*)substrtocatch(.*)$ $1changedsubstr$2;