Hey, How do I 301 redirect a section of an old website to a section of new website? I couldn't find anything specific. I want to redirect all pages in blacksburgpoker.com/forums/ to pokereagles.com/poker-forum/ Thanks
I would just do.. Redirect 301 /forums/ NEWSITE.com/poker-forum/ Code (markup): That should work just fine.
well you need to use your full domain name of course....also make sure you use that in the root of your site. if you still can't figure it out, read this: http://www.isitebuild.com/301-redirect.htm
well, this is what i am using right now: RewriteEngine On RewriteRule ^forums/(.*)$ http://www.pokereagles.com/poker-forum/ [L,R=301] Code (markup):