我需要抓住,如果我的网址包含一个小的子网站,保持网址原样并只重写那个小部分,我该怎么做到这一点?
例如:
http://foobar.com/foo-bar-substrtocatch-baz
应该成为
http://foobar.com/foo-bar-changedsubstr-baz
提前致谢…
最佳答案
rewrite ^(.*)substrtocatch(.*)$ $1changedsubstr$2;
我需要抓住,如果我的网址包含一个小的子网站,保持网址原样并只重写那个小部分,我该怎么做到这一点?
例如:
http://foobar.com/foo-bar-substrtocatch-baz
应该成为
http://foobar.com/foo-bar-changedsubstr-baz
提前致谢…
rewrite ^(.*)substrtocatch(.*)$ $1changedsubstr$2;