Mobile app version of vmapp.org
Login or Join
Annie201

: Does a broken link within conditional comments have any effect on SEO? I have many sites with this old code which is intended to direct IE6 users to get a newer browser or to get Google

@Annie201

Posted in: #BrokenLinks #ConditionalComments #Seo

I have many sites with this old code which is intended to direct IE6 users to get a newer browser or to get Google Chrome Frame.

<!--[if lt IE 7]>
You are using an outdated browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a>
or
<a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a>
to improve your experience.
<![endif]-->


The Chrome Frame link is no longer valid (it returns a 404).

Since this doesn't do anything for any significant number of visitors anymore, it doesn't seem to matter if I remove it or leave it. It may be best practice to remove it, but it would take time for each site.

The only downside I can think of to leaving this code unmodified is that perhaps it is a negative factor for SEO. Is it?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Annie201

2 Comments

Sorted by latest first Latest Oldest Best

 

@Goswami781

HTML comments have ZERO value for SEO; crawlers just ignore the comment tag. They simply add no value.

Conditional HTML comments are treated the same, leaving them will not affect the performance of your site.

10% popularity Vote Up Vote Down


 

@Turnbaugh106

IE7... was released in 2006

Google does not care about outdated browsers, it focuses on majority and majority doesn't use a browser released 11 years ago.

IE7 is older than most cars on the road in the UK

If you want to cater for users with browsers older than most cars on the road in the UK then you should change the HTML code so it includes a new link or no link with just the message. It should be noted that most IE7 users will encounter millions of websites that do not render and most of these sites will not inform the user to upgrade their browser.

IE7 has 263 vulnerabilities

It's extremely unlikely that 'real' users will visit your site using IE7, it has over 263 known vulnerabilities and personally I wouldn't bloat my code for these few users.

Traffic

With all this said it boils down to how many users visit the site, if you receive millions of unique visitors a month then the 'amount' of people using IE7 increasing therefore it may be worth while having, but for the majorty of sites with hundreds to a few thousand visitors a month, it'll be extremely rare to see a spike in IE7 user agents lurking in the log, if they do they could also be 'naughty' bots.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme