iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Google Discussion Forum Google Discussion forum is for topics specifically related to Google. There is a subforum dedicated to AdSense/AdWords subjects.

Share Thread: & Tags

Share Thread:

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-22-2009, 11:01 AM
WebProWorld Pro
 
Join Date: May 2008
Location: London, UK
Posts: 110
seopo RepRank 2seopo RepRank 2
Default Google vs AVG toolbar 404 settings

OK here's the dilema.

We provide our sites with bespoke error 404 pages. Google (and maybe others) see's it as an issue if you dont add the 404 code to the header, so we add this info using server side code.

So far so good.

However, recently many people have been installing the latest version of AVG, along with their toolbar. This toolbar detects 404 pages and then serves up its own dodgy search page along with a load of yahoo ads! This looses the visitor from the site and is quite a big issue (especially with moving old sites to new)

So here's was my train of thought.

1) We could turn off the header settings passing the 404 code but Google Webmaster Tools will flag this as an issue. Which one would assume would have an impact on the SERPs
2) We could keep the status quo and forget about the lost traffic
3) Or do some server side scripting to detect bots and serve 404 errors to search engines and non 404 to browsers

Obviously I'm siding towards point 3 but wanted to see if any others had any experience / feedback on this issue?

Cheers,

Richard
Reply With Quote
  #2 (permalink)  
Old 01-24-2009, 06:43 AM
Mel Mel is offline
WebProWorld 1,000+ Club
 
Join Date: Jul 2003
Posts: 1,903
Mel RepRank 2Mel RepRank 2
Default Re: Google vs AVG toolbar 404 settings

I would not worry about the rankings part of things as I really don't think a lack of a proper 404 page will affect your rankings.

But traffic is a greater concern, and in this instance I would simply block AVG from accessing your site in any way at any time.
__________________
Mel Nelson
Expert SEO | Cheap used cars
Reply With Quote
  #3 (permalink)  
Old 01-24-2009, 07:50 AM
WebProWorld Pro
 
Join Date: Dec 2007
Location: Brussels, Belgium
Posts: 164
Jean-Luc RepRank 2
Default Re: Google vs AVG toolbar 404 settings

One should avoid 404's as much as possible. There are several possible reasons why a page does not exist anymore, but, in many cases, there exists a new page that can be seen as a replacement for the old removed page. In such a case, use a 301 redirect from the old address to the new one. Benefits are obvious: you do not lose traffic, visitors get a page that is close in content to the page they were asking for and search engines will pass the link juice of the old page to the new one.

Jean-Luc
__________________
Checking redirects made easy | | Professional AWStats Services
Reply With Quote
  #4 (permalink)  
Old 01-24-2009, 03:48 PM
deepsand's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: May 2004
Location: Philadelphia, PA
Posts: 3,280
deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9
Default Re: Google vs AVG toolbar 404 settings

Quote:
Originally Posted by Mel View Post
... in this instance I would simply block AVG from accessing your site in any way at any time.
Not possible, as AVG is not accessing the site.

The pseudo-redirection in question is handled via a Browser Helper Object (BHO) installed along with the toolbar. The BHO checks the Header Status Code of each page downloaded; if it's a 404, it does not allow that page to be rendered, but calls for a different page to be loaded & rendered.
Reply With Quote
  #5 (permalink)  
Old 01-25-2009, 01:22 PM
WebProWorld Pro
 
Join Date: May 2008
Location: London, UK
Posts: 110
seopo RepRank 2seopo RepRank 2
Default Re: Google vs AVG toolbar 404 settings

We recently moved a large 30,000+ pages site and to a new system and URL structure. In this instance 301's would be too time consuming to do this manually or to create a procedure to automate. So we are stuck with 404's.... I'm going to go ahead and test my third option. Thanks for your replies.
Reply With Quote
  #6 (permalink)  
Old 01-26-2009, 10:48 AM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,661
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: Google vs AVG toolbar 404 settings

The third option won't work.

Simply put, there is no way whatsoever to distinguish a request from a browser using the AVG toolbar and a browser that does not. For security reasons (according to AVG) their toolbar does not identify itself to the server when pages are requested.

I think your best option would be to modify your 404 page so that it redirects users using a 301 redirect to an error resolution page. This will probably get you the best results, as it will allow you to retain users and keep them in the funnel.

To do this, first set your 404 document to a .php document. The code will be the following:
Code:
header('Location:http://yourdomain/yourerrormessage',301);exit();
Every time a missing page is requested, the user is redirected to the page containing your error message. You can further add dynamic content to this error message page by analyzing the HTTP_REFERER tag to find possible places to offer to the user as alternative links, or you could tie the page into your site's internal search, and more.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #7 (permalink)  
Old 01-26-2009, 10:52 AM
WebProWorld Pro
 
Join Date: May 2008
Location: London, UK
Posts: 110
seopo RepRank 2seopo RepRank 2
Default Re: Google vs AVG toolbar 404 settings

The third option would work if I did it for all browsers though, right? I've noted there are other instances of browser toolbars hijacking the page.
Reply With Quote
  #8 (permalink)  
Old 01-26-2009, 11:06 AM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,661
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: Google vs AVG toolbar 404 settings

Oooh, I misread option 3. Unfortunately, I think there is a chance Google might see that as cloaking. I do know Yahoo does some sneaky checks looking for 404 pages, not sure about Google. However, I think it might be a bit of a risk.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #9 (permalink)  
Old 01-26-2009, 11:16 AM
WebProWorld Pro
 
Join Date: May 2008
Location: London, UK
Posts: 110
seopo RepRank 2seopo RepRank 2
Default Re: Google vs AVG toolbar 404 settings

I did think that might be a possibility, but it's almost anti-seo from a search engine perspective.

404's would have a negative impact on your SERPs so I'd hoped it wouldnt be seen as an attempt to improve SEO position by cloaking. What are your thoughts on this?
Reply With Quote
  #10 (permalink)  
Old 01-26-2009, 11:59 AM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,661
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: Google vs AVG toolbar 404 settings

My understanding is that 404 pages can be used as a method to feed search engines alternative links - the page still gets crawled and links in that page will still be followed. I tend to err on the side of caution with things like this, because different SEs may take different approaches. I just think a 301 catch-all, replacing the 404 ErrorDoc might be the safest option, as it would resolve the issue with toolbar pages and would also collect incoming pagerank onto a single page that could then be used to flow that pagerank to appropriate pages on the site.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #11 (permalink)  
Old 01-26-2009, 12:06 PM
WebProWorld Pro
 
Join Date: May 2008
Location: London, UK
Posts: 110
seopo RepRank 2seopo RepRank 2
Default Re: Google vs AVG toolbar 404 settings

Intersting. I think that may well be the way forward then. Thanks Wige.
Reply With Quote
  #12 (permalink)  
Old 01-28-2009, 10:33 PM
deepsand's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: May 2004
Location: Philadelphia, PA
Posts: 3,280
deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9deepsand RepRank 9
Default Re: Google vs AVG toolbar 404 settings

As I see that wige has beat me to the punch here, I'll just add a few additional observations and a suggestion.

Clearly unconditionally changing the Server Header Response Code from 404 to another is easier to implement and maintain than is a conditional change, which would, at the least, require an ongoing effort so as to maintain a reasonably complete and accurate list of those browser agents which should be/should not be presented a 404.

And, as noted by wige, it wholly avoids the risk of giving the appearance of cloaking.

However, you may wish to consider returning a 302, rather than a 301. This will advise the requester to expect to find the desired content at the original URL in the future, rather than telling it to not revisit the original URL again but to instead find the desired content at the specified new URL.

In this manner, you will retain the option of later re-directing traffic destined for selected individual old URLs to specific new URLs, via a 301, without affecting the content presented to the remaining balance of traffic destined for old URLs.
Reply With Quote
  #13 (permalink)  
Old 02-04-2009, 04:28 AM
WebProWorld New Member
 
Join Date: Feb 2009
Posts: 3
honsikrey RepRank -1
Default Re: Google vs AVG toolbar 404 settings

n our research, we have discovered malicious sites returning Http 404 codes (indicating that the web site requested could not be found), and then turning around to serve a page that is filled with maliciousness for display as the error page, sneaky as that may sound. That being said, we do like the idea of having Google’s toolbar prevent the casual surfer from accidentally visiting a malware-laden 404 page.
Reply With Quote
  #14 (permalink)  
Old 02-04-2009, 12:10 PM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,661
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: Google vs AVG toolbar 404 settings

The problem there is that the Google toolbar only displays its own 404 page when the page is smaller than 30k. Most malware laden pages will be larger, causing the bad page to be displayed.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
Reply

  WebProWorld > Search Engines > Google Discussion Forum

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Google Sitemaps Settings cz Google Discussion Forum 11 12-17-2008 10:08 AM
Google-Sun - The Toolbar, Ay, There's the Rub WPW_Feedbot Search Engine Optimization Forum 0 10-04-2005 10:00 PM
Google Toolbar For Firefox Leaves Beta, Gains Google Sugges WPW_Feedbot Search Engine Optimization Forum 0 09-23-2005 07:30 AM
Page rank 0 in google toolbar and 3 in google directory enhernandez Google Discussion Forum 3 08-19-2005 08:20 AM
Alexa Toolbar vs. Google Toolbar srmfishkin Google Discussion Forum 1 01-29-2004 06:42 PM


All times are GMT -4. The time now is 08:31 PM.



Search Engine Optimization by vBSEO 3.3.0