Designing Rich Internet Applications For Search Engine AccessibilityPage o 8
Several approaches are available or making your web siteaccessible to search engines; these approaches dier inthe level o indexing, which is obtainable and how this isachieved. For certain sites, it is not necessarily a requirementthat every part o the site can be indexed by search engines.For example, a site, which provides a web-based e-mailservice, does not require every single piece o inormation onthe site to be indexed by a search bot. Other sites, however,do require that every piece o inormation can easily be oundand indexed by search engines. For example, a web site withinormation about the courses provided by a university issuch a case. Backbase has identied the ollowing strategiesor getting a SPI indexed by search engines:
Lightweight Indexing
: no structurally changes are madeto your site; existing tags such as
meta, title
and
h1
areleveraged.
Extra Link Strategy
: extra links are placed on the site,which search bots can ollow and thereby index the wholesite.
Secondary Site Strategy
: a secondary site is created,which is ully accessible to the search engine.For each o these strategies the ollowing questions will beanswered: To what extent is the content o the page indexed?Can links be ollowed on the page (e.g. link elements (<ahre=”xx”>) or
s:include
elements)?When a link is ollowed by the search bot, what is thestatus o the URL that is being indexed. Can this URL bedisplayed by browsers or will some type o redirection berequired?
Lightweight Indexing
This strategy should be used i only certain key inormationneeds to be indexed by search engines. In this case it isrecommended that you take the ollowing steps whendesigning your SPI:Use a
title
element in the document head, preerablycontaining one or more keywords that specically relateto the contents o the site. For example:
<title>BXML WebMail – Sign In</title>
Use a
keywords
meta
element with a
content
attributecontaining some appropriate keywords. For example:
<meta name=”keywords” content=”WebMail, e-mail, bxml, mail” />
Use a
description
meta
element with a
content
attribute,which contains a relevant description o the web page. The value o this element is oten printed as part o asearch result by Google. For example:
<meta name=”description” content=”A FreeBXML WebMail application. This uniqueWebMail application offers the look and feelof a normal Windows application, with theease and portability of a web-based client.”/>
Place
key content
within the main HTML structure andnot in an include le, or some other dynamically loadedcontent. I possible, place this important content withina
h1, h2
or
h3
element, since search bots deem these tocontain more important inormation. Remember thatthese tags can be styled in anyway you want using CSS.It should be noted that these points can also be put to gooduse, in the design o your SPI, in conjunction with the extralink strategy or the secondary site strategy. In
summary
by using this lightweight-indexing strategyonly the content supplied by the
title
and
meta
elements andthose elements that are directly located on the index pageis indexed. No links o type
s:include
are ollowed; thereorethere is no requirement to deal with redirection. This is not avery ull indexing scheme, but it is extremely simple to applyto your site.
The Extra Link Strategy
There are two main approaches to making a site ullyindexable by search engines: the extra link strategy and thesecondary site strategy. The extra link strategy is the easiesto these two to implement and it can make the site entirelyindexable by search engines, but does not create a secondarysite in normal HTML and is thereore not accessible to olderbrowser, which are incompatible with BXML. The essence o this strategy is to create an extra link on the main SPI indexpage or each include le, whose contents you wish to beindexed. Some experimentation has revealed that the extralinks must be o the type:
<a href=”include1.html”>include 1</a>
Making SPIs Search Engine Accessible
Leave a Comment