I moved my website from the /v1/etc... directory to the /v2/etc... directory and would like to make a permanent redirect in htaccess. Can someone help me?
You can use either mod_rewrite:
RewriteEngine on RewriteRule ^v1(/.*)?$ /v2$1 [L,R=301]
Or mod_alias:
Redirect permanent /v1 /v2
1.4m articles
1.4m replys
5 comments
57.0k users