Reputation: 2699
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?
Upvotes: 4
Views: 8264
Reputation: 5605
Put this:
RewriteEngine On
RewriteRule /v1/(.\*) /v2/(.\*) [R=301,L]
in your .htaccess
file.
Upvotes: 1
Reputation: 655229
You can use either mod_rewrite:
RewriteEngine on
RewriteRule ^v1(/.*)?$ /v2$1 [L,R=301]
Or mod_alias:
Redirect permanent /v1 /v2
Upvotes: 7