Redirect to a new domain

Discussion in 'Search Engine Optimization' started by horatiub, Feb 1, 2008.

  1. #1
    Hello everyone,

    I know this topic has been discussed many times but I still have a few things that I am confused about.

    I have a blog that has around 130,000 visitors/month. The blog resides under a subdomain such as www.abc.com/blog

    Most of my traffic, about 70-80% comes from Google.

    My plan is to move this blog to its own domain www.xyz.com

    I know that there are 2 options: redirect 301 or 302. But the more I read, the more I am confused about it. Some people recommend one over the other one.

    My questions are basically:

    1. which one is best to use?
    2. how badly would I be affected by the change? Will the traffic drop dramatically? My PR is actually 0 now, because of the text link ads, so in terms of that, it makes no difference.

    thank you
     
    horatiub, Feb 1, 2008 IP
  2. gsv13

    gsv13 Well-Known Member

    Messages:
    2,773
    Likes Received:
    114
    Best Answers:
    0
    Trophy Points:
    130
    #2
    301 will work best .... as it is a permanent change!!! will not effect traffic that much ..... if rest of the url remains same!
     
    gsv13, Feb 1, 2008 IP
  3. horatiub

    horatiub Peon

    Messages:
    48
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    cool.
    Also, how should I go about the redirect? .htaccess? any examples?

    Should I also redirect when someone types www.abc.com/blog to www.xyz.com ?
     
    horatiub, Feb 2, 2008 IP
  4. astup1didiot

    astup1didiot Notable Member

    Messages:
    5,926
    Likes Received:
    270
    Best Answers:
    0
    Trophy Points:
    280
    #4
    You should use .htaccess to redirect the domains, you will see a decrease in organic traffic, this is due to the temporary drop in search engine results because of the redirecting. It takes time to pass on the SEO\Pagerank weight. Below is an example of how to do the redirecting in .htaccess

     
    astup1didiot, Feb 2, 2008 IP
  5. Revelations-Decoder

    Revelations-Decoder Well-Known Member

    Messages:
    3,028
    Likes Received:
    152
    Best Answers:
    4
    Trophy Points:
    190
    #5
    You are confused you have me and others conused to!

    a sub domain goes like this

    www.yourdomain.kd-mains.com

    or

    www.mydomain.kd-mains.com

    and not

    www.abc.com/blog

    or www.kd-mains.com/blog

    redirecting anything is not good to do if it can be avoided!

    So as an example let's say I once had the domain worldsdating.com and wanted to redirect the traffic to kd-mains.com/dating I would just make it known on Google and elsewhere but I would not redirect traffic from worldsdating.com via any other means as redirects just take up time in many ways!
     
    Revelations-Decoder, Feb 2, 2008 IP
  6. jojojosonm

    jojojosonm Banned

    Messages:
    744
    Likes Received:
    87
    Best Answers:
    0
    Trophy Points:
    0
    #6
    301 will be better
     
    jojojosonm, Feb 2, 2008 IP
  7. horatiub

    horatiub Peon

    Messages:
    48
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    ok, let me make it clear then:

    my current blog is hosted under: www.abc.com/blog

    Basically, I am trying to move it under a brand new domain: www.xyz.com

    Does it make more sense?
     
    horatiub, Feb 2, 2008 IP
  8. horatiub

    horatiub Peon

    Messages:
    48
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    so I should expect a huge drop then. Some of the articles are ranked really high, so basically, all the traffic from them will be gone...for a while.
     
    horatiub, Feb 2, 2008 IP
  9. rebels

    rebels Peon

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    No, I don't think you will experience a huge drop. I changed thousands of pages recently with a permanent .htaccess redirect with no problems. I did not change domain names though.
     
    rebels, Feb 2, 2008 IP
  10. astup1didiot

    astup1didiot Notable Member

    Messages:
    5,926
    Likes Received:
    270
    Best Answers:
    0
    Trophy Points:
    280
    #10
    I can't give you an exact figure on how much traffic you'll not recieve or how far in the search results you'll fall. What I'm telling you is it will happen for a decent amount of time as the 301 redirect passes juice over, you will return to normal levels eventually.
     
    astup1didiot, Feb 3, 2008 IP
  11. horatiub

    horatiub Peon

    Messages:
    48
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    I'm having some problems redirecting. For some reason, when i do this

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^www.old-site.com/blog [NC]
    RewriteRule ^(.*)$ http://www.new-site.com/$1 [L,R=301]

    it doesn't work. I placed this in the .htaccess found in the root, and not under the /blog

    but if I try this code

    redirect 301 /blog http://www.new-site.com/

    everything works well.

    Which one should I use? Is there a difference between the two of them?
     
    horatiub, Feb 21, 2008 IP
  12. horatiub

    horatiub Peon

    Messages:
    48
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    anyone? I can't figure it out

    Here is what I came up with so far,

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^www\.old-site.com\/blog$ [NC]
    RewriteRule ^(.*)$ http://www.new-site.com/$1 [L,R=301]
     
    horatiub, Feb 21, 2008 IP