404 Page not Found - Validation Fails

Discussion in 'Co-op Advertising Network' started by stupot, Dec 22, 2004.

  1. #1
    Shawn, my site won't validate when pages have been removed. I think it would be good if when the validation process is taking place that any code 404 ignores the page and moves on to the next one as many pages in google's cache have now been removed from my site. Thanks.
     
    stupot, Dec 22, 2004 IP
  2. T0PS3O

    T0PS3O Feel Good PLC

    Messages:
    13,219
    Likes Received:
    777
    Best Answers:
    0
    Trophy Points:
    0
    #2
    It would be good practise to have those 404's 301ed to the index or some search page which strips the referral URL and looks for clues as to which page might have been looked for. When the landing page has the ads, you'll validate again.

    If the coop system finds it, then real users will find those missing pages as well.
     
    T0PS3O, Dec 22, 2004 IP
  3. expat

    expat Stranger from a far land

    Messages:
    873
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #3
    generate a custom 404 which not only looks better for any visitots but also allows to send a mail to admin with the references and you can show the ad's

    M
     
    expat, Dec 22, 2004 IP
  4. stupot

    stupot Peon

    Messages:
    61
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thanks for the tips guys i think i'll go for the custom 404 page, does google still see the page as not found because i don't really want the page to be cached or indexed?
     
    stupot, Dec 22, 2004 IP
  5. digitalpoint

    digitalpoint Overlord of no one Staff

    Messages:
    38,334
    Likes Received:
    2,613
    Best Answers:
    462
    Trophy Points:
    710
    Digital Goods:
    29
    #5
    A 301 redirect would be the best option. Although it would drop out of Google if the page has no links too.
     
    digitalpoint, Dec 22, 2004 IP
  6. stupot

    stupot Peon

    Messages:
    61
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #6
    I'm not quite sure how to do that in IIS and the sites have validated ok now, so i guess i will leave the pages to be removed from googles index. Great Job with the network, beginning to see some great results.
     
    stupot, Dec 22, 2004 IP
  7. expat

    expat Stranger from a far land

    Messages:
    873
    Likes Received:
    18
    Best Answers:
    0
    Trophy Points:
    0
    #7
    a quick guide to IIS 404 is here http://www.highcontext.com/Articles/howto/404.phpprobably best is to e-mail your hosting provider and tell them which page to use.

    I use 404 including a litle script so I see notifaction when a pages drops out

    example
    <?php
    $today = date("j F Y, G:i:s");
    $message = "Date and Time: $today\nRequest URL: http://$SERVER_NAME$REQUEST_URI\nReferring page: $HTTP_REFERER\n\nClient: $HTTP_USER_AGENT\nRemote IP: $REMOTE_ADDR\n\n";
    $message .= "This is an automated message.\n\nHave a nice day.";
    mail("adminmail", "Error 404-xxx", $message, "From: : ");

    ?>
    have fun
    M
     
    expat, Dec 22, 2004 IP