1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Two different domains with same content

Discussion in 'Search Engine Optimization' started by joelchrist, Dec 16, 2009.

  1. #1
    Hi,
    I have my new site which is updated from old site, more or less both sites has same content and meta tags. But now i m targeting only my new site, still the old site exist with the same meta tags. What can i do? Does it affect my ranking?

    Old Site : www.ajsqu.com

    Newsite: www.ajsquare.com
     
    joelchrist, Dec 16, 2009 IP
  2. Traffic-Bug

    Traffic-Bug Active Member

    Messages:
    1,866
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    80
    #2
    You may want to re-route the search engines visiting the old site by using appropriate 301 redirect in the .htaccess file.
     
    Traffic-Bug, Dec 16, 2009 IP
  3. billybui119

    billybui119 Peon

    Messages:
    8
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    How to re-route the search engines. Can you guide more details
     
    billybui119, Dec 17, 2009 IP
  4. kevinkarl

    kevinkarl Peon

    Messages:
    217
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    You can Redirect old site to new site. Otherwise I thinks it's Duplicate Content Issue.
     
    kevinkarl, Dec 17, 2009 IP
  5. joelchrist

    joelchrist Banned

    Messages:
    1,646
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    78
    #5
    Can anyone please say the way to do 301 redirection clearly?
     
    joelchrist, Dec 17, 2009 IP
  6. Harry_Potter

    Harry_Potter Peon

    Messages:
    139
    Likes Received:
    43
    Best Answers:
    0
    Trophy Points:
    0
    #6
    301 is also called permanent redirection which would tell the engines that the redirection is permanent and that you are moving the domain to a new domain. It can be configured from server level and can be checked online through largely available free tools.
     
    Harry_Potter, Dec 17, 2009 IP
  7. Ecommerce Development

    Ecommerce Development Peon

    Messages:
    65
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Yes it will effect your ranking as its duplicated content...redirect one website to the other using 301.
     
    Ecommerce Development, Dec 17, 2009 IP
  8. jaf

    jaf Active Member

    Messages:
    139
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    83
    #8
    Google and other search engines discourage duplicate content within or across domains.
     
    jaf, Dec 17, 2009 IP
  9. ColeenB

    ColeenB Peon

    Messages:
    123
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Make a text file with the following code:

    Options +FollowSymlinks
    RewriteEngine on
    rewritecond %{http_host} ^www.ajsqu.com/ [nc]
    rewriterule ^(.*)$ www.ajsquare.com/$1 [r=301,nc]

    Save it as .htaccess (with no extension after it) and save it to your root directory. It's also a good idea to do a redirect from non-www urls to www urls (or the reverse - just so long as everything goes to one place.) Here's the code with www redirects added:

    Options +FollowSymlinks
    RewriteEngine on
    rewritecond %{http_host} ^www.ajsqu.com/ [nc]
    rewriterule ^(.*)$ www.ajsquare.com/$1 [r=301,nc]

    rewritecond %{http_host} ^ajsqu.com/ [nc]
    rewriterule ^(.*)$ www.ajsquare.com/$1 [r=301,nc]

    rewritecond %{http_host} ^ajsquare.com/ [nc]
    rewriterule ^(.*)$ www.ajsquare.com/$1 [r=301,nc]
     
    ColeenB, Dec 17, 2009 IP
  10. joelchrist

    joelchrist Banned

    Messages:
    1,646
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    78
    #10
    ok..Making text file with following code. Then what will be next? Can you please guide me in proper way?
     
    joelchrist, Dec 17, 2009 IP
  11. atniz

    atniz Well-Known Member

    Messages:
    1,661
    Likes Received:
    28
    Best Answers:
    0
    Trophy Points:
    115
    #11
    atniz, Dec 17, 2009 IP
  12. joelchrist

    joelchrist Banned

    Messages:
    1,646
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    78
    #12
    Thank you atniz...It would be helpful to me. I m regular visitor to atniz.com
     
    joelchrist, Dec 17, 2009 IP
  13. joelchrist

    joelchrist Banned

    Messages:
    1,646
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    78
    #13
    Do i need to do it for all my internal pages or is it enough only for main domain home page?
     
    joelchrist, Dec 17, 2009 IP