You can use external redirection:
Options +FollowSymLinks -MultiViews # Turn mod_rewrite on RewriteEngine On RewriteBase / RewriteRule ^test/(.*)$ /new/$1 [L,NC,R=302]
If you do not want external redirection (without changing the URL in the browser), remove the R flag:
RewriteRule ^test/(.*)$ /new/$1 [L,NC]
PS: Please clarify: It not rewriting, it has to just move the user from old to new address
source share