htaccess rewrite directory

.htaccess, mod-rewrite, url-rewriting

Solution

You can use either mod_rewrite:

RewriteEngine on
RewriteRule ^v1(/.*)?$ /v2$1 [L,R=301]

Or mod_alias:

Redirect permanent /v1 /v2

Problem

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?

Original source