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.

What is 301 redirect?

Discussion in 'Search Engine Optimization' started by jcyber, Jun 20, 2011.

  1. #1
    What is 301 redirect?
     
    jcyber, Jun 20, 2011 IP
  2. jah0people

    jah0people Active Member

    Messages:
    71
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    61
    #2
    This is the transfer of power from the domain A to the B, for example, you xxx.com. positions them on the word xxx ----- 301 wxxx.com / xxx - convey the power of a keyword in the second
     
    jah0people, Jun 20, 2011 IP
  3. seodash

    seodash Member

    Messages:
    589
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    28
    #3
    It's a process of moving permanently of one URL to a different URL.
     
    seodash, Jun 20, 2011 IP
  4. markhamilton

    markhamilton Member

    Messages:
    117
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #4
    301 redirect is the method to redirect the web page to a different url.
     
    markhamilton, Jun 20, 2011 IP
  5. Ana Boks

    Ana Boks Peon

    Messages:
    36
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It's not that hard to implement and it should preserve your search engine rankings for that particular page.


    ColdFusion Redirect


    <.cfheader statuscode="301" statustext="Moved permanently">
    <.cfheader name="Location" value="http://www.new-url.com">

    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" );
    %>

    CGI PERL Redirect

    $q = new CGI;
    print $q->redirect("http://www.new-url.com/");

    Ruby on Rails Redirect

    def old_action
    headers["Status"] = "301 Moved Permanently"
    redirect_to "http://www.new-url.com/"
    end
     
    Ana Boks, Jun 20, 2011 IP
  6. affilorama

    affilorama Active Member

    Messages:
    1,896
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    80
    #6
    A 301 redirect is a redirection that automatically takes visitors to the new website or page. This type of redirect is permanent and search engine bots will index and rank the new page.
     
    affilorama, Jun 20, 2011 IP
  7. theguruman

    theguruman Peon

    Messages:
    28
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    It's a redirect that keeps the page rank/ranking of the old page (pointing to the new page).
     
    theguruman, Jun 20, 2011 IP
  8. itrush07

    itrush07 Well-Known Member

    Messages:
    403
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    103
    #8
    Redirect is something that will guide your visitors to access the correct page in case you've done major reconstruction to your site..
     
    itrush07, Jun 20, 2011 IP
  9. c0ldfire

    c0ldfire Well-Known Member

    Messages:
    172
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    103
    #9
    permanent redirect
     
    c0ldfire, Jun 20, 2011 IP
  10. diyakapoor

    diyakapoor Active Member

    Messages:
    619
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #10
    301 redirect is used to re-direct all the link value/juice of an old domain to a new domain. And this is permanent redirect.
     
    diyakapoor, Jun 21, 2011 IP
  11. Ilona Andrews

    Ilona Andrews Peon

    Messages:
    295
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #11
    301 redirection is used to moving one web page url to another web page .
     
    Ilona Andrews, Jun 21, 2011 IP
  12. bradjohnson

    bradjohnson Peon

    Messages:
    246
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    bradjohnson, Jun 21, 2011 IP
  13. india9

    india9 Member

    Messages:
    38
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #13
    maybe it will help you
     
    india9, Jun 21, 2011 IP