rewrite ^/catalog/test(.*) /catalog/test2$1 permanent;
test(.*)
совпадает с test2.test/(.*)
rewrite ^/catalog/test/(.*) /catalog/test2/$1 permanent;
RewriteCond %{REQUEST_URI} !^(.*)/catalog/test2$
RewriteRule ^/catalog/test(.*) /catalog/test2$1 [R=301,L]