Ok, Simply: I want domain.com/1/ to direct to domain.com/2/ but also domain.com/1/subdir.php to redirect to domain.com/2/subdir.php and domain.com/1/blah.jpg to redirect to domain.com/2/blah.jpg So on and so forth. I'd be very greatful if you could help me.
Just add the below code in your .htaccess file. RewriteRule ^domain.com/1/(.*) http://domain.com/2/$1 [L,R=301] Code (markup):