hello, i wasnt sure exactly where to post this but i guess here is ok. I have a forum that was on mysite.com and i just moved it to mysite.com/forum and now all my google visitors are getting a 404 because the pages that are indexed are mysite.com/blahblahblah - how can i use a redirect to fix this?
yes, lookup 301 redirects rewrite: RewriteEngine On RewriteRule ^olddir/(.*)$ http://mysite.com/newdir/$1 [R=301,L] I think will work.