PDA

View Full Version : Moved forum to new directory, I need redirect.


pcremedy
12-08-2008, 08:10 AM
Does anyone have any php code that will work to redirect anyone who attempts to go to where the forum used to be to where it is now?

Example

domain.com/newthread.php?do=newthread&f=111
needs to redirect to
domain.com/forum/newthread.php?do=newthread&f=111

Thanks in advance,

Kevin

SEOvB
12-08-2008, 10:28 AM
you just need some lines added to your .htaccess in the old folder


RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.domain\.com
RewriteRule (.*) http://www.domain.com/newlocation/$1 [R=301,L]