Log in

View Full Version : how to redirect 301 ?


Qleb
11-12-2008, 09:32 PM
Hi

i need to move my forums to new link

as from https://vborg.vbsupport.ru to http://www.vbulletin.com/forum

but i dont to lose my seo in google and my links

what is the ri8 way to do it in RewriteRule ?

punchbowl
11-12-2008, 10:34 PM
add the following to a .htaccess file on the old server

RewriteEngine on
RewriteRule ^/~(.+) http://newserver/~$1 [R,L]

Qleb
11-13-2008, 10:05 AM
add the following to a .htaccess file on the old server

RewriteEngine on
RewriteRule ^/~(.+) http://newserver/~$1 [R,L]

if i do this the old url well redirect the visitor to new url ?even the serach enigens

punchbowl
11-13-2008, 11:31 AM
Yes. It should do. Here's some more reading for you:

http://www.google.com/support/webmasters/bin/answer.py?answer=83105&query=change+domain&topic=&type=

Qleb
11-13-2008, 11:47 AM
Yes. It should do. Here's some more reading for you:

http://www.google.com/support/webmasters/bin/answer.py?answer=83105&query=change+domain&topic=&type=

Thanks man ;)