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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With