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.

301 redirect help

Discussion in 'Site & Server Administration' started by matthintze, Feb 23, 2012.

  1. #1
    Can anyone give me advice on how to do a proper 301 for a relevant site? I'm a newbie, and I don't have a clue...thanks
     
    matthintze, Feb 23, 2012 IP
  2. nvp

    nvp Peon

    Messages:
    48
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You should do a 302, not 301.
     
    nvp, Feb 23, 2012 IP
  3. matthintze

    matthintze Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks, I researched that...I guess the 301 takes the pr juice away permanently...
     
    matthintze, Feb 23, 2012 IP
  4. matthintze

    matthintze Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Yeah, google penalized my site so I need to do a 301, but how do you do one per page and link each one to another url?
     
    matthintze, Feb 23, 2012 IP
  5. yester123

    yester123 Peon

    Messages:
    360
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #5
    yester123, Feb 24, 2012 IP
    matthintze likes this.
  6. SASA Techno

    SASA Techno Active Member

    Messages:
    242
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    68
    #6
    301 Redirect


    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. If you have to change file names or move pages around, it's the safest option. The code "301" is interpreted as "moved permanently".


    You can Test your redirection with Search Engine Friendly Redirect Checker


    Below are a Couple of methods to implement URL Redirection




    IIS Redirect


    In internet services manager, right click on the file or folder you wish to redirect
    Select the radio titled "a redirection to a URL".
    Enter the redirection page
    Check "The exact url entered above" and the "A permanent redirection for this resource"
    Click on 'Apply'
    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" );
    ?>
     
    SASA Techno, Feb 24, 2012 IP
    matthintze likes this.
  7. dawsonryna

    dawsonryna Peon

    Messages:
    18
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    First you need to decide whether you need a permanent redirection or temporary redirection. According to that, you proceed.
     
    dawsonryna, Feb 24, 2012 IP
  8. Sphinks

    Sphinks Active Member

    Messages:
    1,102
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    78
    #8
    if you continue with the same "SEO techniques" Google will penalize your new domain , too.
     
    Sphinks, Feb 24, 2012 IP
  9. matthintze

    matthintze Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Wow, thanks for all the information...I'll definitely test that out! The site didn't get penalized for bad seo practices or techniques, but for simply being an seo company and ranking too high, for too many terms
     
    matthintze, Feb 24, 2012 IP
  10. stevemack

    stevemack Peon

    Messages:
    136
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #10
    you can also go with this...
    Options +FollowSymLinks
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^yourwebsite.com [NC]
    RewriteRule ^(.*)$ http://www.yourwebsite.com/$1 [L,R=301]
    RewriteRule ^(.*)index.html$ http://www.yourwebsite.com/$1 [L,R=301]

    Redirect 301 /oldapage.html http://www.yourwebsite.com/new.html

    hope it helps you..!
     
    stevemack, Feb 24, 2012 IP
  11. StormInternet

    StormInternet Peon

    Messages:
    46
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Hi,

    Which OS, Control Panel you have on your web server ?
     
    StormInternet, Feb 26, 2012 IP