I would like to redirect all traffic from old urls to new urls with the folder structure changing: domain.com/old/page/ domain.com/new/page/ Anyone know how to do this?
Well, since you're changing the folder structure, you'll need one rule per change - so that domain.com/one-old/page/ goes to domain.com/one-new/page, and so on. Which means you would need something like this: Redirect 301 ^domain.com/old_1/page ^domain.com/new_1/page Redirect 301 ^domain.com/old_2/page ^domain.com/new_2/page
Thanks buddy! I tried adding this to htaccess but get a 500 server error: Redirect 301 ^mydomain.com/oldfolder/page ^mydomain.com/newfolder/page I forgot to mention that /page can be any page so I guess that needs to be different.