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.

re-direct domain?

Discussion in 'Search Engine Optimization' started by laxmi, Jan 9, 2011.

  1. #1
    i want to re-direct domain "x" to domain y"".but when the user is coming to x it is taking long time to re-direct to y? so how can i re-direct with out getting the user spend time on domain "x"?
     
    laxmi, Jan 9, 2011 IP
  2. jskseo

    jskseo Peon

    Messages:
    56
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    what kind of a redirect are you using? 404 redirects are the best and are quick too.
     
    jskseo, Jan 9, 2011 IP
  3. laxmi

    laxmi Well-Known Member

    Messages:
    1,329
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    130
    #3
    can you paste the codes of re-direction?
     
    laxmi, Jan 9, 2011 IP
  4. sherone

    sherone Well-Known Member

    Messages:
    1,539
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    130
    #4
    You can use HTML redirection like this:

    <META HTTP-EQUIV=Refresh CONTENT="0; URL=http://www.yoursite.com">


    Make sure keep 0 in content.

    You need to place this tag in the header <head> code </head>

    hope it will help you!
     
    sherone, Jan 9, 2011 IP
  5. laxmi

    laxmi Well-Known Member

    Messages:
    1,329
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    130
    #5
    i used it but it is taking time to re-direct
     
    laxmi, Jan 9, 2011 IP
  6. Barre Tire

    Barre Tire Peon

    Messages:
    1,193
    Likes Received:
    79
    Best Answers:
    0
    Trophy Points:
    0
    #6
    You need to do a 301 redirect otherwise it will be slow and any rank from the previous site will not be passed on. Here is how to do it.

    Redirect Old domain to New domain (htaccess redirect)Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.
    The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)

    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]

    Please REPLACE www.newdomain.com in the above code with your actual domain name.

    In addition to the redirect I would suggest that you contact every backlinking site to modify their backlink to point to your new website.

    Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.
     
    Barre Tire, Jan 9, 2011 IP
  7. internetproz

    internetproz Peon

    Messages:
    136
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    try to use the 301 redirect it is the safest way to redirect one website to another.
     
    internetproz, Jan 9, 2011 IP
  8. iamnameless

    iamnameless Greenhorn

    Messages:
    56
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #8
    301 is not just the safest but it is the BEST. You should also 301 your non www to your www, so you will get full credit.
     
    iamnameless, Jan 9, 2011 IP