+ Reply to Thread
Results 1 to 2 of 2

Thread: 301 Redirect
      
   

  1. #1
    Join Date
    Aug 2006
    Location
    Kaukapakapa in New Zealand
    Posts
    23

    Smile 301 Redirect

    Does anyone know how I can use 301 redirect on my site, we have updated it a number of times over the last year, and now have around 2,000 listings on google going to old pages that are no longer there. So I would like them to be forwarded to the homepage. Any Help would be good. Thanks

  2. #2
    Mook25's Avatar
    Mook25 is offline Brigadier General
    Join Date
    Oct 2005
    Location
    UK
    Posts
    1,430

    Default Re: 301 Redirect

    No problem,
    • Access your cpanel
    • click on the error pages icon
    • click on 404
    • add the html for what ever you want showing
    As an example of the code you'd enter look below.

    HTML Code:
    <html>
    <head>
    <META HTTP-EQUIV="Refresh"
    CONTENT="15; URL=www.freeresourcedirectory.com">
    <TITLE>404 Not Found on Freeresourcedirectory.com</TITLE>
    </head>
    <body>
    <center>
    <IMG SRC="http://www.globalmook.com/freeresourcedirectory/error404.gif">
    </center>
    <br>
     
    <H2>If this page stays here for more than 20 seconds - Click <A HREF="http://www.freeresourcedirectory.com/"> here</a></H2>
    </FORM>
    </body>
    </html> 
    Obviously change the link to your site and also change the image link to whatever you want to show up on the page. if you don't want an image on the page just remove the below from the above code.

    HTML Code:
    <IMG SRC="http://www.globalmook.com/freeresourcedirectory/error404.gif">
    </center>
    Now you can either have a static link on this page that your customers will click themselves or you can do what i have done and add a redirect code into it.

    HTML Code:
    <META HTTP-EQUIV="Refresh"
    CONTENT="15; URL=www.freeresourcedirectory.com">
    All this is telling the browser to do is after 15 seconds to redirect to the given url. Again just change the amount of seconds you want the page to wait before redirecting and the url also.

    If you want the page to redirect instantly just change the value to 0.

    Hope this helps you out
    Arcade Ninja - Free Flash Arcade
    FreeGadget4me.Com - Learn how to get free gadgets delivered direct to your door for free

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49