如果请求中包含特定字词,我需要将旧域重定向到新域。
EX:
如果请求具有关键字新
http://www.example.com/new/abc
它将重定向到
http://www.newexample.com/abc
从网址中删除新,然后重定向到新域
答案 0 :(得分:0)
我用
解决了这个问题RewriteCond %{REQUEST_URI} new
RewriteRule ^new/(.*)$ http://www.newexample.com/$1 [R=301,NC]