Best Practies for URL redirection

Discussion in 'Search Engine Optimization' started by RockemSockem, Dec 10, 2008.

  1. #1
    Wondering if you could help me out with a question.

    We've registered 3 domain names:

    campaign51.com
    campaign52.com
    campaign53.com

    These are being promoted in different industry print publications.

    I'm looking for the best way to forward people landing on those URLs
    to CampaignSaver.ca

    I've seen several methods including:
    -hosting the sites and using meta tags or java
    -using DNS like forwarding and aliases

    I'm using Google Analytics on CampaignSaver.ca and hope that what ever
    method we choose for re-direct:

    [1] will show campaign##.com as the referring URL on our traffic sources report
    [2] won't be penalized in any way by the search engines.

    Any ideas?

    Thanks,
     
    RockemSockem, Dec 10, 2008 IP
  2. DrivingTraffic.com

    DrivingTraffic.com Peon

    Messages:
    68
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    From the sounds of it use a 301 redirect
     
    DrivingTraffic.com, Dec 10, 2008 IP
  3. sultanofseo

    sultanofseo Notable Member

    Messages:
    9,930
    Likes Received:
    405
    Best Answers:
    0
    Trophy Points:
    265
    #3
    you can either do a 301 redirect or html redirect

    html redirect:

    <meta http-equiv="Refresh" content="0; url=http://new-url.com">
    Code (markup):
    above html redirect code should be placed within <head></head> tag and where it says content = 0, it means zero second. if you want people to stay on the entry page longer before being redirected, then you can change the value to 1, 2, or 5 seconds
     
    sultanofseo, Dec 10, 2008 IP
  4. vishenda

    vishenda Peon

    Messages:
    304
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    301 redirect will be a good option
     
    vishenda, Dec 10, 2008 IP
  5. neiljhonson

    neiljhonson Peon

    Messages:
    315
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #5
    You are using windows hosting and asp or php or java for web development then you should go with 301 permanent redirection. It will help you to transfer your all seo value to destination site.

    following is the code to insert at your home page or desired page to transfer to your destination url:

    PHP Redirect
    <?
    Header( "HTTP/1.1 301 Moved Permanently" );
    Header( "Location: http://www.new-url.com" );
    ?>

    ASP Redirect
    <%@ Language=VBScript %>
    <%
    Response.Status="301 Moved Permanently"
    Response.AddHeader "Location","http://www.new-url.com/"
    %>

    ASP .NET Redirect
    <script runat="server">
    private void Page_Load(object sender, System.EventArgs e)
    {
    Response.Status = "301 Moved Permanently";
    Response.AddHeader("Location","http://www.new-url.com");
    }
    </script>

    JSP (Java) Redirect
    <%
    response.setStatus(301);
    response.setHeader( "Location", "http://www.new-url.com/" );
    response.setHeader( "Connection", "close" );
    %>
     
    neiljhonson, Dec 10, 2008 IP
  6. Bloomtools

    Bloomtools Peon

    Messages:
    1,361
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #6
    You can use 301 redirect.
     
    Bloomtools, Dec 10, 2008 IP
  7. teamnirvana

    teamnirvana Active Member

    Messages:
    844
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    60
    #7
    The best method would be to use HTACCESS.

    HTACCESS is the most efficient way to perform a 301 redirect.
     
    teamnirvana, Dec 10, 2008 IP
  8. Sadie

    Sadie Active Member

    Messages:
    144
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #8
    best practice calls for a 301 (permanent) redirect in the .htacess file. Avoid JavaScript, Meta or 302 redirects, they will just hurt your campaign.
     
    Sadie, Dec 10, 2008 IP