<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DirJournal: Search and Social Blog &#187; Alysson Fergison</title>
	<atom:link href="http://www.dirjournal.com/articles/author/alysson/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dirjournal.com/articles</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 17:43:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Robots.txt 101</title>
		<link>http://www.dirjournal.com/articles/robots-txt-101/</link>
		<comments>http://www.dirjournal.com/articles/robots-txt-101/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 16:34:55 +0000</pubDate>
		<dc:creator>Alysson Fergison</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[robots.txt]]></category>

		<guid isPermaLink="false">http://www.dirjournal.com/articles/?p=999</guid>
		<description><![CDATA[Web robots &#8211; often referred to as crawlers, bots, or spiders &#8211; are software programs that constantly travel the web, indexing the information found on millions and millions of websites every single day. Some sites, however, don&#8217;t wish [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignleft size-thumbnail wp-image-442" src="http://www.dirjournal.com/business-journal/wp-content/uploads/2009/09/bigstockphoto_Data_Servers_Vitual_Reality_973988-150x150.jpg" alt="bigstockphoto_Data_Servers_Vitual_Reality_973988" width="150" height="150" />Web robots &#8211; often referred to as crawlers, bots, or spiders &#8211; are software programs that constantly travel the web, indexing the information found on millions and millions of websites every single day.  Some sites, however, don&#8217;t wish to be indexed in search engines or accessed by these Web Robots.  Now that you know what a Web Robot is and what it does, it&#8217;s important you know what can be done to limit their access to your site if you so desire.  There may be a number of reasons for wanting to prevent bot access to a website page or specific directory.  The most common reasons are related to security, privacy and duplicate content.</p>
<p>The Robots Exclusion Protocol, more commonly referred to as a /robots.txt file, provides webmasters with the ability to provide instructions on indexing the site to bots.  The file, which must reside in the domain&#8217;s root directory, serves to limit the bots’ access to files within that domain’s root directory.  There are often a large number of pages that make up an entire site, but many of those pages – like registration, login, 404 error, privacy policy and order confirmation pages &#8211; should not be indexed by search engines.  The /robots.txt file also comes in particularly handy for webmasters with a wide network of sites with identical privacy policies, terms and conditions or e-commerce sites that have checkout pages, shopping carts, etc.</p>
<h3>Addressing Duplicate Content with /robots.txt</h3>
<p>The /robots.txt file can also help to eliminate duplicate content issues that arise with blogging software, such as WordPress.  With WordPress &#8211; and all blogging software, for that matter &#8211; content from blog posts is published on the post URL itself, but copies of that content are also published on category pages, as well as tag and author archives.  This inadvertently creates several pages of duplicate content.  Since duplicate content can have a negative impact on a site&#8217;s ranking in the organic search results, the /robots.txt file can help to reduce the potential for duplicate content that can adversely affect the site&#8217;s search marketing strategy.</p>
<h3>Understanding How To Use /robots.txt</h3>
<p>In order to function properly, the /robots.txt file should be accessible at http://www.domain.com/robots.txt and reside in the domain&#8217;s root directory.  The file itself should be created as a plain text document.  Do NOT use Microsoft Word or another word processing program &#8211; the standard Notepad program that is installed with Windows or SimpleText/TextEdit with the Mac OS work best.  The file name must be robots.txt and uploaded directly to the domain&#8217;s root directory.  The commands within the file itself can be as simple or complex as your needs demand.</p>
<p>The standard, generic /robots.txt file &#8211; one that does not limit access to any of the information in your domain&#8217;s root directory &#8211; would be formatted like this:</p>
<p style="padding-left: 30px">User-agent: *<br />
Disallow:</p>
<p>In order to block bot access to the domain&#8217;s root directory completely requires adding only one character to the standard or generic /robots.txt file and would look like this:</p>
<p style="padding-left: 30px">User-agent: *<br />
Disallow: /</p>
<p>What if you want to limit bot access only to certain subdirectories or specific pages of the site?  Not a problem.  You would simply add each individual subdirectory or URL to the /robots.txt file as follows:</p>
<p style="padding-left: 30px">User-agent: *<br />
Disallow: /checkout.asp<br />
Disallow: /add_cart.asp<br />
Disallow: /view_cart.asp<br />
Disallow: /error.asp<br />
Disallow: /shipquote.asp</p>
<h3>The Robots.txt File Is Not Fool Proof</h3>
<p>While the /robots.txt file does a good job of blocking a bot&#8217;s access to the domain&#8217;s root directory, it isn&#8217;t fool proof.  Each individual page you do not want bots to index should also incorporate a properly formatted robots META tag.  The standard robots META tag is configured like this:</p>
<p style="padding-left: 30px">&lt;meta name=&#8221;robots&#8221; content=&#8221;index,follow&#8221; /&gt;</p>
<p>To help to prevent the bots from accessing individual URLs, the robots META tag in the header of the page should look like this:</p>
<p style="padding-left: 30px">&lt;meta name=&#8221;robots&#8221; content=&#8221;noindex,nofollow&#8221; /&gt;</p>
<p style="padding-left: 30px">or</p>
<p style="padding-left: 30px">&lt;meta name=&#8221;robots&#8221; content=&#8221;noindex,follow&#8221; /&gt;</p>
<h3>The Bottom Line</h3>
<p>A /robots.txt is a very useful tool and, unfortunately, an often overlooked and neglected aspect of web development.  Now that you have a better understanding of what it is, what it does and how to use it, take some time to consider how your site may benefit from having a properly configured /robots.txt file.  In the meantime, start checking out the /robots.txt files of the sites you visit to familiarize yourself with different configurations and uses for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dirjournal.com/articles/robots-txt-101/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Do Summer Blockbuster Movies Bother With On-Site SEO?</title>
		<link>http://www.dirjournal.com/articles/do-summer-blockbuster-movies-bother-with-on-site-seo/</link>
		<comments>http://www.dirjournal.com/articles/do-summer-blockbuster-movies-bother-with-on-site-seo/#comments</comments>
		<pubDate>Fri, 29 May 2009 04:17:35 +0000</pubDate>
		<dc:creator>Alysson Fergison</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[blockbuster movies]]></category>
		<category><![CDATA[off-site seo]]></category>
		<category><![CDATA[on-site seo]]></category>

		<guid isPermaLink="false">http://www.dirjournal.com/articles/?p=735</guid>
		<description><![CDATA[In some instances a site will gain so many natural links that little else matters in the grand scheme of ranking.  Let&#8217;s take a look at a handful of summer blockbuster movie sites to see what kind of [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>In some instances a site will gain so many natural links that little else matters in the grand scheme of ranking.  Let&#8217;s take a look at a handful of summer blockbuster movie sites to see what kind of attention, if any, was paid to their on-site SEO efforts.  And, more importantly, a close look at where they rank and if a lack of attention to on-site SEO matters much in the world of blockbuster movie sites.<span id="more-735"></span></p>
<h2>Star Trek</h2>
<p>One of the most highly anticipated blockbuster movies of 2009 is certainly Star Trek.  Following the same school of thought as the always popular Star Wars series, the latest movie in the Star Trek saga rewinds to tell the story of the core characters in the original series before they joined the crew of the Enterprise.  This installment serves as the prequel to the original series.</p>
<p>As you would expect, the SERPs for a recent movie is a perfect example of the universal search Google is committed to providing for its users.  A general search for the term &#8220;Star Trek&#8221; generates a whopping 105 million results ranging from news results that aren&#8217;t necessarily applicable&#8230;like the three in this case, which clearly mention Star Trek, yet I feel far short of being particularly devoted to Star Trek.</p>
<p style="text-align: center;"><a href="http://www.seoaly.com/images/star-trek-serps.jpg"><img class="aligncenter" src="http://www.seoaly.com/images/star-trek-serps.jpg" alt="Star Trek Search Results" width="602" height="780" /></a></p>
<p>Immediately following the Google News Results we find the Star Trek official website, dedicated to all things Star Trek.  The site not only promotes movies, like the 05/08 release of this film, but also serves the larger Trekker/Trekkie community &#8211; devoting sections of the site to the original series, the existing movies, The Next Generation or any other evolution of the original Gene Roddenberry creation.</p>
<p>After the official Star Trek sites come a couple of results from IMDB (Internet Movie Database), a trusted source of information about movies, television shows, actors, etc.  The next results are an integral part of Google&#8217;s universal search offering:  videos.  Not surprisingly, all three of the video results shown within the SERP for &#8220;Star Trek&#8221; link to trailers for the recent movie release.</p>
<p>And immediately following the videos, we finally stumble on to the official movie site, <a title="Star Trek" href="http://www.startrekmovie.com" target="_blank">startrekmovie.com</a>.  The Star Trek site is built entirely in Flash, which considering the visual demands of the techie-types that gravitate toward Sci-Fi flicks like Star Trek, shouldn&#8217;t come as any surprise.  It does make me wonder, though, if the site wouldn&#8217;t rank above the fold if it incorporated content the search engines could easily index coupled with Flash elements that appeal to more demanding users, as well.</p>
<p>Results for &#8220;Star Trek movie&#8221; and &#8220;Star Trek trailer&#8221; are much more promising for the summer blockbuster, with the official site listing well above the fold in both searches.  Remember, the more specific a search term the less competition there tends to be.  This is a perfect example, with over 150 million results for &#8220;Star Trek&#8221;, but just over 30 million for &#8220;Star Trek movie&#8221;.</p>
<h2>TRANSFORMERS</h2>
<p>If the previews for this movie are any indication, TRANSFORMERS is sure to be the pick of the litter of action films this summer.  While the movie isn&#8217;t scheduled to be released until June 24<sup>th</sup>, the official movie site for &#8220;TRANSFORMERS:  Revenge of the Fallen&#8221; &#8211; <a href="http://www.transformersmovie.com/">www.transformersmovie.com</a> &#8211; already ranks in the top position in Google for the general term &#8220;Transformers&#8221;.</p>
<p>It&#8217;s no surprise that the entire &#8220;TRANSFORMERS&#8221; site is dynamic, with very little content that can be indexed by the search engines.  Like the &#8220;Star Trek&#8221; movie site, that means the search engines must rely very heavily on the anchor text of links from outside sources to determine what terms are most applicable to the site.  Fortunately for summer blockbuster movies, receiving a great deal of attention from traditional media and trusted online media sources is worked into their marketing budgets.</p>
<h2>Land Of The Lost</h2>
<p>With a title like &#8220;Land of the Lost&#8221;, I wouldn&#8217;t expect this site to have a lot of trouble ranking well.  Like TRANSFORMERS, the movie has yet to be released and the public hasn&#8217;t had the chance to see if the film will live up to the hype.  That said, much like Star Trek, this movie has a bit of competition in the search results &#8211; itself.  A science fiction television series by the same name made its debut in 1974.  The IMDB result for the original series is, however, outranked by the movie&#8217;s official site:  <a href="http://www.landofthelost.net/">www.landofthelost.net</a> , which appears atop the SERPs for &#8220;Land of the Lost&#8221;.</p>
<h2>Up</h2>
<p>Perhaps the most surprising result in the SERPs comes for the uber-generic term &#8220;Up&#8221;.  I expected to at least have to include &#8220;movie&#8221; or &#8220;Disney&#8221; with the search in order find relative results.  I was wrong.  Upon inputting &#8220;Up&#8221; into the query, I was immediately greeted by the Disney Pixar summer film.  In fact, 4 out of the first 5 results were for the movie, Up.</p>
<p>Like the previous movie mentions, this site is also entirely done in Flash.  Further illustrating the impact and overall importance of a high number of incoming links from a wide variety of sources ranging from media websites to enthusiastic bloggers.  Rankings are a bit of a popularity contest and a link to a site plays very much like a vote for most popular.  The cache that comes with being a Disney film put Up at a link building advantage from the start.</p>
<h3>Less Buzzworthy Movie Mentions</h3>
<p>A few honorable mentions include:  Night at the Museum:  Battle of the Smithsonian, whose official movie site ranks 7<sup>th</sup>, behind IMDB results, video results and Google news results for &#8220;Night at the Museum&#8221;.  Ice Age:  Dawn of the Dinosaurs ranks 1<sup>st</sup> for &#8220;Ice Age&#8221;.</p>
<p>An interesting thing to note is that the soon to be released The Taking of Pelham 123 has an official site at <a title="The Taking of Pelham 123" href="http://www.catchthetrain.com" target="_blank">catchthetrain.com</a>, yet that URL appears NO WHERE within the search results for the term &#8220;Pelham 123&#8243;.  This certainly could serve as an argument in favor of including search terms in the URL, but with the complete absence of catchthetrain.com from the search results, I&#8217;d say there&#8217;s probably a bit more to it than that.</p>
<p>A more obvious point of difference between a site for a movie like TRANSFORMERS vs. The Taking of Pelham 123 lies in the number of incoming links.  TRANSFORMERS has over 100,000 links pointing to it, while The Taking of Pelham 123 has under 8,000 links.  That&#8217;s a huge discrepancy.</p>
<h3>Playing By The Rules</h3>
<p>Links are still Google&#8217;s currency of choice, as related to organic rankings.  That&#8217;s  no less true of a movie studio&#8217;s website than a local small business owner&#8217;s.  The most efficient way to improve a site&#8217;s ranking is to address on-site and off-site SEO issues.  If you&#8217;re a movie studio with a huge marketing budget, on the other hand, you can ignore on-site SEO entirely and still come out at or near the top of the search results because of the large number of links the site will acquire naturally.</p>
<p><img style="position: absolute; visibility: hidden; z-index: 2147483647; left: 136px; top: 2840px;" src="image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAUCAYAAACJfM0wAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAK8AAACvABQqw0mAAAAB90RVh0U29mdHdhcmUATWFjcm9tZWRpYSBGaXJld29ya3MgOLVo0ngAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDQvMDQvMDhrK9wWAAACMElEQVQ4ja3SP2gTcRQH8O8vvUtIGmkqTY3SaMVFz6KDW2ywg4s4dGgXp3SyVLIIthCKQxCCuoZaXaSO/ilKd4sSdXRL0EWtIRYaSkXsJTH33utwSZM01xo0D353v+N+97l33/upQCAwFgwGfehiFYtFUxsYGPCmUqmv3YQTicSwBgCapnXTBQBoSinout5VVCnVDr/44B/OZH0xs6KMThCfR3LRs+aTycjvbwfCmawvduZkn7EwN4TBfheY90fXN6uYuffdyGQRu3apkmyDmzM2K8pYmBvC6kcLK+/KMEsWLCIQMSyLULUIFhH0HsGNycNYnDuO6PRno9lQSsFVh+tDQSEY6MHymzJKFQILgxkgYhALmBnMDLNsIf1sA8cG3VDYYzhFAWWfRBjCAiIbIxYQE1ga17+2GSICKLQYznCtiATEDK6BIrU5MUhgd0+NH+AIt+5jshdqgkpVwEwNkBgs9lyE4XY3nnLMWNf13QEAG1uE2JVe9PUC5JCvCMPrVpifOor1YnW34/pw7NjvVbmZ+3ljcTaMq5EjbRFJ07Gw8QfTd9fg96rc3o7bMh4f9SytvDenLl7/ZADAl5cjWF7dwmy60PaSeiPjo56lv2Ycnzi0Fp9AEgAu39x8+urtT9x5/GP74a2++LlTuumo76kDd4W9ALj9qIDIiOfBhdO+jtB9O279TFcuet77fD7Wn+sU7ajj1+kTSccb/wv/aymloEKh0Fg4HPZ2E87n86Udvs4FoWqwSHUAAAAASUVORK5CYII=" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dirjournal.com/articles/do-summer-blockbuster-movies-bother-with-on-site-seo/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>6 Classic Articles Every SEO Should Read</title>
		<link>http://www.dirjournal.com/articles/6-classic-seo-articles/</link>
		<comments>http://www.dirjournal.com/articles/6-classic-seo-articles/#comments</comments>
		<pubDate>Wed, 27 May 2009 04:13:20 +0000</pubDate>
		<dc:creator>Alysson Fergison</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Site Architechture]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[sem]]></category>
		<category><![CDATA[SEO Articles]]></category>

		<guid isPermaLink="false">http://www.dirjournal.com/articles/?p=740</guid>
		<description><![CDATA[Believe it or not, new people join the search marketing world every day.  Frankly, that scares me a little bit.  It's not the competition or the potential loss of business that scares me, but the sources people are relying on to give them the "right" information.]]></description>
			<content:encoded><![CDATA[<p></p><div id="attachment_2356" class="wp-caption aligncenter" style="width: 650px">
	<a href="http://www.dirjournal.com/articles/wp-content/uploads/2009/05/Articles.jpg"><img class="size-full wp-image-2356 " title="Articles" src="http://www.dirjournal.com/articles/wp-content/uploads/2009/05/Articles.jpg" alt="" width="650" height="300" /></a>
	<p class="wp-caption-text">Credit: BigStockPhoto.com</p>
</div>
<p>Believe it or not, new people join the search marketing world every day.  Frankly, that scares me a little bit.  It&#8217;s not the competition or the potential loss of business that scares me, but the sources</p>
<p>people are relying on to give them the &#8220;right&#8221; information.  That said, here are the top 6 most classic SEO articles that I suggest anyone new to the industry read.  And then read again.  Some things in SEO/SEM world haven&#8217;t changed much&#8230;and a refresher is always a good idea.<span id="more-740"></span></p>
<h3>&#8220;<a href="http://www.webmasterworld.com/forum3/2010.htm">Successful Site In 12 Months With Google Alone</a>&#8220;</h3>
<p>Written by Brett Tabke at WebmasterWorld over 7 years ago, the fundamental steps for getting started down the road toward success in Google are covered in this archived post.  While I don&#8217;t agree 100% with everything included here &#8211; like the idea of dismissing the use of keywords in the domain and the necessity of submitting the site to search engines manually &#8211; I love the emphasis that Brett puts on creating quality content regularly.</p>
<p>Several times within the post Brett mentions content, creating logical directories for content, keeping new content flowing, etc.  That is one thing that certainly hasn&#8217;t changed.  Content is still king and the sites the provide the most relevant and useful content always seem to work their way to the top of the SERPs.</p>
<p>The search engines may now be looking for more kinds of content (i.e. video) than back in 2002, it&#8217;s important to recognize that serving up the content that will be most helpful to users is still the goal of search engines.  Convincing the search engines that your content will be most helpful to search users is yours.</p>
<h3>&#8220;<a href="http://searchengineland.com/seo-is-easy-lets-look-at-the-hard-5-percent-10914">SEO Is Easy? Let&#8217;s Look At The Hard 5 Percent</a>&#8220;</h3>
<p>A more recent post this time, by Todd Friesen, published in the 100% Organic section of Search Engine Land which helps to draw the line in the sand between some aspects of SEO that many believe can be done by anyone and the vastly important last 5% that if done incorrectly can have far-reaching and long-term consequences that can spell catastrophe for a site.</p>
<p>Todd highlights the following aspects of SEO as &#8220;The 5 Percent&#8221;:</p>
<ul>
<li>URL Structure (the fixing thereof)</li>
<li>Advanced Linking</li>
<li>Appropriate Cloaking (err&#8230;IP Delivery)</li>
<li>Dynamic Template Modification</li>
<li>Client Management (agency life)</li>
<li>Redirection (site moves or redesign)</li>
</ul>
<p>Particular emphasis is placed on the importance of managing clients&#8217; expectations and having clear lines of communication.  He notes the particular challenges faced by both parties when the client feels they&#8217;ve received lackluster results, while the agency suffers the frustration of their changes not being implemented.</p>
<h3>&#8220;<a href="http://www.keyworddriven.com/filthy-linking-rich-and-getting-richer.html">Filthy Linking Rich And Getting Richer!</a>&#8220;</h3>
<p>Written by Mike Grehan back in October 2004, this post still holds true today.  With statements like:</p>
<blockquote><p>&#8220;&#8230;And I&#8217;m afraid some of it may be pretty bleak reading if you have newly created, lowly indexed web pages and you&#8217;re desperately waiting for someone to link to them so that they stand a chance of ranking in a search engine with a static link based algorithm&#8230;&#8221;</p></blockquote>
<p>And:</p>
<blockquote><p>&#8220;&#8230;In fact, it has been proposed that &#8220;the rich get richer&#8221; effect drives the evolution of real networks. If one node has twice as many links as another node, then it is precisely twice as likely to receive a new link&#8230;&#8221;</p></blockquote>
<p>Mike Grehan finds some important correlations between science, psychology and the underlying reasons that some sites build links more easily than others.  This post takes a strikingly scientific turn with references to Hungarian mathematician and genius, Paul Erdos and a study by sociologists Fredrick Liljeros and Christopher Edling of Stockholm University, the post itself possesses a great deal of insight into why the idea of &#8220;the rich get richer&#8221; does not just apply to power and wealth in a traditional sense, but in the virtual world of online currency &#8211; links.</p>
<p>This may be one of the more challenging posts you read this week, but it&#8217;s well worth the effort.</p>
<h3>&#8220;<a href="http://www.seobook.com/archives/001792.shtml">101 Ways to Build Link Popularity</a>&#8220;</h3>
<p>Aaron Wall and Andy Hagans joined forces for this gem of a post highlighting the importance of link building back in 2006.  As illustrated by this quote, not that much has changed in the world of link building since then:</p>
<blockquote><p>&#8220;Link Building&#8230; Time-intensive. Frustrating. Sometimes confusing. Yet Unavoidable. Because ultimately, it&#8217;s still the trump card for higher rankings&#8230;&#8221;</p></blockquote>
<p>Obtaining high quality links from trusted sources is no easier today than back in 2006, and yet &#8211; no less important either.  While social networking and social voting sites like Digg and StumbleUpon have provided opportunities to expose content to a much larger audience, demands on the quality and type of content have increased significantly, as well.</p>
<h3>&#8220;<a href="http://www.searchbistro.com/spamguide.doc">Spam Guide for Raters</a>&#8220;</h3>
<p>While I hesitate to recommend that anyone follow a SPAM guide, this article at Henk van Ess&#8217;s Search Bistro will help anyone identify SPAM techniques, regardless of intent to either abuse or report them.  The blog may not have been updated since late 2007, but this guide is as useful today for identifying spam-o-rific tactics &#8211; or, more constructively &#8211; understanding what is considered SPAM, than ever.</p>
<p>Topics covered include:</p>
<ul type="disc">
<li>Sneaky Redirects</li>
<li>Hidden Text / Hidden Links</li>
<li>Thin Affiliate Doorway Pages</li>
</ul>
<h3>&#8220;<a href="http://www.seopapers.com/article/100">Hilltop in Plain English</a>&#8220;</h3>
<p>Jason Duke addressed the infamous &#8220;Hilltop&#8221; update carried out by Google in 2004 that seemed to throw a monkey wrench into the Link Olympics going on at that time.</p>
<p>The essence of &#8220;Hilltop&#8221; was a significant shift in attention from merely quantity of links to a site, to more quality links to a site from sites that are topically related or considered more authoritative.</p>
<h4>Oh, How Little Has Changed&#8230;</h4>
<p>What do all of these posts have in common?  They are all well beyond the time period in which they should be relevant and useful in the world of SEO.  Yet, they&#8217;re not.  They all include very important, basic and fundamental information that still applies as much today as it did when they were originally written.</p>
<p>There are several other posts that deserve a mention here, and probably hundreds of others I just don&#8217;t have room to mention.  Don&#8217;t discount a post&#8217;s relevance based solely on its age.</p>
<ul>
<li>&#8220;<a href="http://www.webmasterworld.com/forum78/6426.htm">Tips for Attaining One Way Inbound Links</a>&#8220;</li>
<li>&#8220;<a href="http://www.3dogmedia.com/seo-friendly-affiliate-systems/">SEO Friendly Affiliate Systems</a>&#8220;</li>
<li>&#8220;<a href="http://www.seroundtable.com/archives/015547.html">SEO 101 &#8211; The Timeless and Classic Hits</a>&#8220;</li>
</ul>
<p>Read them, test the theories when &amp; where you can and determine for yourself what still applies and what doesn&#8217;t.  You&#8217;ll find that shockingly little has changed from an on-site SEO perspective and that links still rule the world.  What&#8217;s changed is where the links come from and understanding how to appeal to those that may link naturally to your site.</p>
<p><img style="position: absolute; visibility: hidden; z-index: 2147483647; left: 274px; top: 2474px;" src="image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAUCAYAAACJfM0wAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAK8AAACvABQqw0mAAAAB90RVh0U29mdHdhcmUATWFjcm9tZWRpYSBGaXJld29ya3MgOLVo0ngAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDQvMDQvMDhrK9wWAAACMElEQVQ4ja3SP2gTcRQH8O8vvUtIGmkqTY3SaMVFz6KDW2ywg4s4dGgXp3SyVLIIthCKQxCCuoZaXaSO/ilKd4sSdXRL0EWtIRYaSkXsJTH33utwSZM01xo0D353v+N+97l33/upQCAwFgwGfehiFYtFUxsYGPCmUqmv3YQTicSwBgCapnXTBQBoSinout5VVCnVDr/44B/OZH0xs6KMThCfR3LRs+aTycjvbwfCmawvduZkn7EwN4TBfheY90fXN6uYuffdyGQRu3apkmyDmzM2K8pYmBvC6kcLK+/KMEsWLCIQMSyLULUIFhH0HsGNycNYnDuO6PRno9lQSsFVh+tDQSEY6MHymzJKFQILgxkgYhALmBnMDLNsIf1sA8cG3VDYYzhFAWWfRBjCAiIbIxYQE1ga17+2GSICKLQYznCtiATEDK6BIrU5MUhgd0+NH+AIt+5jshdqgkpVwEwNkBgs9lyE4XY3nnLMWNf13QEAG1uE2JVe9PUC5JCvCMPrVpifOor1YnW34/pw7NjvVbmZ+3ljcTaMq5EjbRFJ07Gw8QfTd9fg96rc3o7bMh4f9SytvDenLl7/ZADAl5cjWF7dwmy60PaSeiPjo56lv2Ycnzi0Fp9AEgAu39x8+urtT9x5/GP74a2++LlTuumo76kDd4W9ALj9qIDIiOfBhdO+jtB9O279TFcuet77fD7Wn+sU7ajj1+kTSccb/wv/aymloEKh0Fg4HPZ2E87n86Udvs4FoWqwSHUAAAAASUVORK5CYII=" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dirjournal.com/articles/6-classic-seo-articles/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>Free SEO Tools You Should Be Using</title>
		<link>http://www.dirjournal.com/articles/free-seo-tools-you-should-be-using/</link>
		<comments>http://www.dirjournal.com/articles/free-seo-tools-you-should-be-using/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 14:17:50 +0000</pubDate>
		<dc:creator>Alysson Fergison</dc:creator>
				<category><![CDATA[Tools & Research]]></category>
		<category><![CDATA[firefox plugins]]></category>
		<category><![CDATA[seo tools]]></category>

		<guid isPermaLink="false">http://www.dirjournal.com/articles/?p=598</guid>
		<description><![CDATA[While there are plenty of paid tools out there that can be used to tackle a variety of SEO tasks, there are also a number of free tools that are useful, as well.  Many of the free tools [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>While there are plenty of paid tools out there that can be used to tackle a variety of SEO tasks, there are also a number of free tools that are useful, as well.  Many of the free tools have been developed by some of the best SEO minds in the industry and each has its own strengths and advantages.</p>
<p>Let’s start with some basics…these tools assess very basic aspects of on-site SEO and don’t require a lot of explanation.  That said, the basics are still important and using the right tools to get a quick overview of a site’s on-site SEO is important.</p>
<p><a title="Meta Tag Analyzer" href="http://www.seocentro.com/tools/search-engines/metatag-analyzer.html" target="_blank">Meta Tag Analyzer</a> from SEOCentro &#8211; quick snapshot of a page’s META tag lengths, relevancy to page content, anchor text of links and other useful basics.</p>
<p><a title="Keyword Density Analysis Tool" href="http://www.webuildpages.com/seo-tools/keyword-density/" target="_blank">Keyword Density Analysis Tool</a> from We Build Pages – while the importance of keyword density is hotly contested in SEO circles, it’s still a good idea to know the keyword density is of a page…if for no other reason than to know if you’re being “spammy”.</p>
<p><a title="SEO Browser" href="http://www.seo-browser.com/" target="_blank">SEO Browser</a> – see your site like the search engines see it…no layout, no graphics, just the down and dirty content that they can index.  Very useful.</p>
<p><a title="Website Grader" href="http://website.grader.com" target="_blank">Website Grader</a> from HubSpot – a quick and very high level overview of a site’s overall search engine friendliness.  It doesn’t provide much actionable information for SEO industry insiders, but for site owners it will provide a great snapshot and provide them with some valuable information regarding what goes into a search engine friendly website.<span id="more-598"></span></p>
<p>Now, on to some bigger and better tools&#8230;</p>
<h4><a href="http://siteexplorer.search.yahoo.com/">Yahoo! Site Explorer</a></h4>
<p>This is the tool used most often to research a site’s inlinks.  The report is easy to run and easy to understand.   In order for the report to accurately reflect the number of links back to site from outside sources, you must configure the result by choosing “Except from this domain” and “Only This URL” from the drop down menus.</p>
<h4><a title="Rank Checker" href="http://tools.seobook.com/firefox/rank-checker/" target="_blank">Rank Checker</a> from SEOBook.com</h4>
<p>There are many instances when you want to know where a site and individual pages of a site rank for a long list of terms.  Searching manually would take more time than you’re willing or able to spend.   Thanks to the genius of Aaron Wall of SEO Book, all you need to arm yourself with is a Firefox plugin.</p>
<p>Aaron has created a video introduction to his Rank Checker tool – watch it.  As I said, this is a Firefox plugin – therefore you must be using Mozilla Firefox in order to use it.  If you don’t have Firefox, go <a title="Download Mozilla Firefox" href="http://www.mozilla.com/en-US/" target="_blank">download it</a>.</p>
<h4><a title="SEO Toolbar" href="http://tools.seobook.com/seo-toolbar/" target="_blank">SEO Toolbar</a> from SEOBook.com</h4>
<p>It seems as though I have some sort of connection to or bias in favor of SEO Book and Aaron Wall, but the fact is that he just builds some great tools – tools that I can’t imagine being without in carrying out my day-to-day tasks assessing and optimizing websites.</p>
<p>It is wildly useful and kills a hundred birds with one stone – pages indexed, domain age, Compete uniques, Diggs, Stumbles, you name it…if you’re going to try out only ONE TOOL as a result of reading this post, this is THE ONE.  Aaron has also created a video introduction to the SEO Toolbar – watch it, too.  Again, this is a Firefox plugin, so you will need to <a title="Install Mozilla Firefox" href="http://www.mozilla.com/en-US/" target="_blank">install Mozilla Firefox</a> in order to use it.</p>
<h4><a title="Google AdWords: Keyword Tool" href="https://adwords.google.com/select/KeywordToolExternal" target="_blank">Google AdWords:  Keyword Tool</a></h4>
<p>Why not get the information straight from the horse’s mouth whenever you can, right?  This free keyword tool from Google gives you two keyword research options to choose from:  1) research by specific term; or 2) input your site’s URL and the tool will generate terms for you based on your site’s content.  There are also a variety of filters available to help you fine tune the results provided by the tool.</p>
<h4><a title="SEO Book Keyword Suggestion Tool" href="http://tools.seobook.com/keyword-tools/seobook/" target="_blank">SEO Book Keyword Suggestion Tool </a></h4>
<p>If I had to choose just one keyword suggestion tool, this one would be it.  One reason I love it is because it separates the results for each term by search engine.  The SEOBook tool also provides data for Google Trends, Google Traffic Estimator, Yahoo! Suggest, Google Suggest and more. A great tool…almost hard to believe it’s free.</p>
<p>This is great information, especially for niche sites, because some have a wider audience of Google users, while others have a greater audience of Yahoo! users.   Since each search engine develops its own algorithm, the criteria for ranking well in each search engine is different.  If your target audience is made up of primarily Yahoo! search users and you optimize primarily for Google, you’re hurting yourself.</p>
<h3>Other Invaluable Firefox Plugins</h3>
<p><a title="SEO Toolbar" href="http://tools.seobook.com/seo-toolbar/" target="_blank"></a></p>
<p><a title="Web Developer Toolbar" href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Web Developer Toolbar</a> – this will let you do everything from turning off images to disabling Java &amp; cookies to validating CSS &amp; HTML directly from the browser window.</p>
<p><a title="SEO For Firefox" href="http://tools.seobook.com/firefox/seo-for-firefox.html" target="_blank">SEO For Firefox</a> – yep, you guessed it…another tool from SEO Book. One of this tool’s most useful functions, in my opinion, is that it allows you to highlight the NOFOLLOW links on a website page.  And yes, there’s a video introduction for this SEO Book tool, too.  Aaron covers all his bases.</p>
<p><a title="RankQuest Toolbar" href="http://www.rankquest.com/download-toolbar.html" target="_blank">RankQuest Toolbar</a> &#8211; like the other toolbars, this one provides a wide variety of useful information, including an on-demand keyword density analyzer and “show META tags” function, plus much more.</p>
<h3>One Last Standalone Tool</h3>
<p><a title="Xenu's Link Sleuth" href="http://home.snafu.de/tilman/xenulink.html" target="_blank">Xenu’s Link Sleuth</a> &#8211; broken links are bad.  I haven’t found a tool yet that provides more thorough or useful information regarding a site’s broken links than this tool.  Not only does it report the existence of a broken link, but it also reports the pages on which the broken links are found – very useful in resolving the issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dirjournal.com/articles/free-seo-tools-you-should-be-using/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Taking Advantage of User-Generated Content Sites</title>
		<link>http://www.dirjournal.com/articles/taking-advantage-of-user-generated-content-sites/</link>
		<comments>http://www.dirjournal.com/articles/taking-advantage-of-user-generated-content-sites/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 05:13:22 +0000</pubDate>
		<dc:creator>Alysson Fergison</dc:creator>
				<category><![CDATA[Branding]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[ehow]]></category>
		<category><![CDATA[hubpages]]></category>
		<category><![CDATA[squidoo]]></category>
		<category><![CDATA[user-generated content sites]]></category>

		<guid isPermaLink="false">http://www.dirjournal.com/articles/?p=589</guid>
		<description><![CDATA[There is no question that the nature of the Information Age has changed the face of marketing forever.  Businesses big and small finally understand that having a website isn’t an option – it is necessity.  There isn’t a [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>There is no question that the nature of the Information Age has changed the face of marketing forever.  Businesses big and small finally understand that having a website isn’t an option – it is necessity.  There isn’t a potentially successful business plan created today that doesn’t include a budget for building a website.  The vast majority of business owners have also begun to understand that simply having a website isn’t enough and that a sound Internet marketing plan is just as important as the existence of the website itself.</p>
<p>The landscape of Internet marketing, and search marketing in particular, is changing.  These days just optimizing your company’s website to perform well in search results isn’t sufficient.  Repetition is the key to success in the search results these days in much the say way it is in traditional marketing.  With respect to the search results, that means having multiple results on the page that correlate to your brand.  For instance, a search result for “athletic shoes” that includes multiple references to Nike is a search marketing success.</p>
<p>The way to accomplish that is by publishing content that references your brand or what you offer (i.e. the keywords used to find your products and/or services) on multiple sources, rather than relying solely on creating content for your website alone.  The fact is that the more sources upon which you create and publish unique content, the greater chance you have of monopolizing multiple results in the SERPs for your target keywords and successfully building your brand online.</p>
<h3><a title="Squidoo" href="http://www.squidoo.com" target="_blank">Squidoo</a> – Search Engine Friendly Content &amp; 400,000+ Visitors Per Day</h3>
<p>Perhaps one of the most well-known user-generated content sites is Squidoo.  Founded in 2005 by Seth Godin, best selling author and blogger, Squidoo boasts nearly 1 million user-generated “lenses” &#8211; the term Squidoo uses to reference to its user’s pages – and is among the 300 most popular sites in the United States.</p>
<p>With that popularity comes an enormous opportunity to connect with Squidoo users via your own personal lenses.  Not only that, Squidoo touts a search engine friendly format that increases the chances that someone doing a keyword search in search engines like Google and Yahoo! will find your lens in their search results.</p>
<p>Unlike many user-generated content and Social Media sites that use <a title="NOFOLLOW Link Information" href="http://googleblog.blogspot.com/2005/01/preventing-comment-spam.html" target="_blank">“NOFOLLOW” links</a>, the links within your Squidoo lenses are “FOLLOW” links.  That means linking to pages of your website in a Squidoo lens will help to build link popularity.  If you’re going to create content for a user-generated site, getting the bonus of some added link popularity for your own site certainly helps to kill two birds with one stone.</p>
<h3><a title="eHow" href="http://www.ehow.com" target="_blank">eHow</a> – 2 Million Pages &amp; 16 Million Unique Visitors Monthly</h3>
<p>The nature of eHow is a bit different than Squidoo, in that the entire site is essentially dedicated to “how-to” and tutorial type content.  That said, eHow is the most highly trafficked user-generated content site we will mention here.  In order to appeal to the eHow audience, it is important that your content follow a “how-to” approach.</p>
<p>For instance, if you sell headphones, creating an article for eHow entitled “Choosing The Best Headphones”.  If you sell cars, writing an article entitled “How To Improve Your Gas Mileage” would be applicable both to your industry and the format of eHow.  Unlike Squidoo, eHow does not provide users with the added bonus of “FOLLOW” links.  Any links you include within your articles will provide an avenue for users to find your website more easily, but it will not have a positive impact on your link building efforts.</p>
<h3><a title="HubPages" href="http://www.hubpages.com" target="_blank">HubPages</a> – Search Friendly Infrastructure &amp; Revenue Generation For Contributors</h3>
<p>It’s important to note that the vast majority of user-generated content sites, including Squidoo and eHow, provide revenue generation opportunities for their contributors, but HubPages was the first to begin paying its contributors up front for articles they believed to be of particularly high quality &#8211; rather than paying them based on ads clicked by visitors to the articles alone.  They elected to do so in part because of the increase in exposure such well-crafted articles would bring to HubPages in the search results.</p>
<p>Why is HubPages so focused on quality articles?  It turns out that quality vs. quantity is the very motto of HubPages.  HubPages set out to overtake their closest competitor, Squidoo, in what – at the time – was considered someone radical and unconventional.  First, they removed all adult content from the site.  They also decided to force publishers who were using HubPages primarily to promote individual products and service to revise the articles to be more information in nature and reduce the excessive linking that had previously occurred.  Personal HubPages, duplicate content copied from other sources and pages that linked out to questionable sites (like known phishing sites, excessive pop-up ad sites and URLs that redirect were unpublished.</p>
<p>In the short term this reduced the overall traffic to HubPages enormously.  In the long run, though, the increase in the quality of the site content won out.  HubPages is now comparable, if not equal, to Squidoo in terms of traffic – despite the fact that HubPages continues to focus on quality information that does not include adult or promotional/marketing content that typically generates a lot of traffic.</p>
<h3>Other User-Generated Content Sources</h3>
<p>Squidoo, eHow and HubPages may be among the most popular user-generated content sites today, but they’re not the only games in town.  Other user-generated content sources to check out include:</p>
<p><a title="Associated Content" href="http://www.associatedcontent.com/" target="_blank">Associated Content</a><a title="Suite101.com" href="http://www.suite101.com/" target="_blank"><br />
Suite101.com<br />
</a><a title="Today.com" href="http://www.today.com" target="_blank">Bukisa<br />
Today.com</a><br />
<a title="Xomba" href="http://www.xomba.com" target="_blank">Xomba</a></p>
<p>These user-generated content sites are among the most underutilized mediums for online reputation management and branding.  Sites like eHow, HubPages and Squidoo provide site owners with a unique opportunity to create content and publish it using their search engine friendly platforms.  Doing so not only gives you another information source that may be found in the search engines, but user-generated content sites also have an audience of millions of visitors on a monthly basis.</p>
<p>Remember – if you’re working to build a brand or maintain a company’s online reputation, the more sources you use to publish and promote content, the better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dirjournal.com/articles/taking-advantage-of-user-generated-content-sites/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Understanding and Creating XML Sitemaps</title>
		<link>http://www.dirjournal.com/articles/understanding-and-creating-xml-sitemaps/</link>
		<comments>http://www.dirjournal.com/articles/understanding-and-creating-xml-sitemaps/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 04:14:56 +0000</pubDate>
		<dc:creator>Alysson Fergison</dc:creator>
				<category><![CDATA[Tools & Research]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[XML Sitemaps]]></category>

		<guid isPermaLink="false">http://www.dirjournal.com/articles/?p=576</guid>
		<description><![CDATA[Sitemaps vs. sitemaps – Yes, Virginia…there is a difference Before getting into the details and purpose of XML Sitemaps, it’s important to understand the difference between a sitemap (lowercase) and a Sitemap (uppercase).  A sitemap is an HTML [...]]]></description>
			<content:encoded><![CDATA[<p></p><h2>Sitemaps vs. sitemaps – Yes, Virginia…there is a difference</h2>
<p>Before getting into the details and purpose of XML Sitemaps, it’s important to understand the difference between a sitemap (lowercase) and a Sitemap (uppercase).  A sitemap is an HTML file, typically accessible to website visitors, which contains a link to each page of a site that visitors might find useful.  It is generally a single page composed only of text-based hyperlinks that can be used to find a specific page more easily – such as a “Contact Us” or specific product page – without being distracted by website design elements or page layout.  While search engines are likely to access an HTML sitemap during the course of crawling a site, this page is not constructed or intended for indexing purposes.<span id="more-576"></span></p>
<p>An XML Sitemap, on the other hand, is an XML file that is not intended for use by a website’s visitors, but by the search engines themselves.  The Sitemap itself is a UTF-8 encoded file that is created specifically to help search engines more efficiently index all of a website’s pages – particularly those that may not be linked to by outside sources or through the site’s text navigation itself.  Google follows the accepted Sitemap Protocol 0.9, as published by <a title="Sitemaps.org" href="http://www.sitemaps.org/" target="_blank">Sitemaps.org</a>.  It’s also important to note that what we are discussing here are standard Sitemaps.  There are also <a title="Video Sitemaps" href="http://www.google.com/support/webmasters/bin/answer.py?answer=80472" target="_blank">Video</a>, <a title="Mobile Sitemaps" href="http://www.google.com/support/webmasters/bin/answer.py?answer=34648" target="_blank">Mobile</a>, <a title="News Sitemaps" href="http://www.google.com/support/news_pub/bin/answer.py?answer=75717" target="_blank">News</a>, <a title="Code Search Sitemaps" href="http://www.google.com/support/webmasters/bin/answer.py?answer=75225" target="_blank">Code Search</a> and <a title="Geo Sitemaps" href="http://www.google.com/support/webmasters/bin/answer.py?answer=94555" target="_blank">Geo</a> Sitemaps that can be created for different types of content.</p>
<h3>Is a Sitemap Necessary?</h3>
<p>While the value of Sitemaps to SEO has been the subject of a great deal of discussion with opinions varying from “Sitemaps are essential” to “Sitemaps are useless”, the fact remains that an XML Sitemap is merely a file that provides search engines with information about a particular website and its pages.  While some may contend that <a title="Sitemaps Are Overrated" href="http://www.smallbusinesssem.com/xml-sitemaps-the-most-overrated-seo-tactic-ever/1193/" target="_blank">Sitemaps are overrated</a>, others take on a “<a title="Sitemaps - Maybe, Maybe Not" href="http://www.seroundtable.com/archives/017415.html" target="_blank">maybe, maybe not</a>” or “<a title="Sitemaps - It Can't Hurt" href="http://www.searchenginejournal.com/google-xml-sitemaps-essential-faq/7123/" target="_blank">it can’t hurt</a>” stand.</p>
<p>Google attempts to locate a Sitemap file at http://www.domain.com/sitemap.xml &#8211; however this Sitemap location can be changed within the Google Webmaster Tools control panel, should the Sitemap exist at an alternate URL.  In my opinion and experience, and particularly because Google searches for a Sitemap by default, there is no reason to not have one.  However, to answer the question, “is a Sitemap necessary?, the short answer is, “no – it is not necessary.”  Submitting a Sitemap to Google does not lead to higher rankings, nor is it a guarantee that a page will be indexed any more quickly than it would otherwise.</p>
<p>A Sitemap does, however, provide search engines with useful information that can help it crawl a site more efficiently, such as the last time the page was updated, how often the page typically changes and a specific page’s importance relative to the site’s other pages.  In an XML Sitemap, that information is displayed as follows:</p>
<p>&lt;url&gt;<br />
&lt;loc&gt;http://www.domain.com/specific-page-address/&lt;/loc&gt;<br />
&lt;lastmod&gt;2009-02-19T17:51:04+00:00&lt;/lastmod&gt;<br />
&lt;changefreq&gt;always&lt;/changefreq&gt;<br />
&lt;priority&gt;0.5&lt;/priority&gt;<br />
&lt;/url&gt;</p>
<h3>Building a Sitemap</h3>
<p>Some people shy away from creating and submitting a Sitemap because it requires a specific protocol that must be followed, as illustrated by Google’s <a title="Webmaster Tools Sitemaps Protocol" href="https://www.google.com/webmasters/tools/docs/en/protocol.html" target="_blank">Webmaster Tools Sitemap Protocol</a>.  For some, having such specific requirements is intimidating and they prefer to not do it at all, rather than do it wrong.  If you’re that person, I have good news.  Thanks to some useful tools, creating a Sitemap file is easy.  In fact, there are a number of online tools that will do it for you – for free – provided that your site isn’t made up of tens of thousands of pages.  <a title="XML-Sitemaps.com" href="http://www.xml-sitemaps.com" target="_blank"><br />
</a></p>
<ul>
<li><a title="XML-Sitemaps.com" href="http://www.xml-sitemaps.com" target="_blank">XML-Sitemaps.com</a> – this tool will build a Sitemap for free for sites up to 500 pages.  If your site has more than 500 pages, they offer a <a title="XML-Sitemaps.com Standalone Software" href="http://www.xml-sitemaps.com/standalone-google-sitemap-generator.html" target="_blank">standalone version</a> of their software that will create a Sitemap with no limit on the number of pages for only $19.99 – and for an additional $10 they will even install the software for you.</li>
<li><a title="XMLSitemap.com" href="http://www.xmlsitemap.com" target="_blank">XMLSitemap.com</a> – this site provides links to a number of free tools that will help you create XML Sitemaps that vary from web-based tools to PHP scripts.</li>
<li><a title="Google (XML) Sitemap Generator for WordPress" href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_blank">Google (XML) Sitemap Generator for WordPress </a> – as is usually the case, WordPress users can rejoice!  There is a plugin that will create an XML Sitemap for you, and SO much more.  This plugin not only creates the XML file, it is highly configurable and can be set to include and exclude certain pages (such as categories, author and tag archives – which you may have a NOINDEX command on and wouldn’t want included in an XML Sitemap).  Not only that, it can be set to rebuild the XML file automatically upon any change to your WordPress site or blog, as well as notifying Google, Yahoo!, MSN and Ask.com automatically whenever the Sitemap is rebuilt.</li>
</ul>
<h3>Sitemap Generated – Now What?</h3>
<p>Provided you’re not a WordPress user and don’t get to take advantage of the automation the above referenced plugin provides, once you’ve generated a Sitemap file in XML format, all that remains is to upload it to your domain’s root directory (if you don’t know how to go about doing this, you should probably leave this task to your Webmaster) and then submit it to Google.  Luckily, Google makes it pretty easy.  Here’s the step-by-step:</p>
<ol>
<li>Log in to your <a title="Google Account" href="https://www.google.com/accounts/" target="_blank">Google Account</a></li>
<li>Follow the “<a title="Webmaster Tools" href="http://www.google.com/webmasters/tools" target="_blank">Webmaster Tools</a>” link</li>
<li>Click on the “Sitemaps” link to the left (if your Webmaster Tools account includes more than one domain, you will need to choose which domain first)</li>
<li>Input the file’s location – if the XML file is uploaded into the root directory, the file location will simply be sitemap.xml; if you placed the XML file in a folder, the file location will be folder/sitemap.xml</li>
</ol>
<p>For more information regarding XML Sitemaps, visit Google’s <a title="About Sitemaps" href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=40318" target="_blank">About Sitemaps</a> page and accompanying <a title="Sitemaps FAQs" href="http://googlewebmastercentral.blogspot.com/2008/01/sitemaps-faqs.html" target="_blank">Sitemaps FAQs</a> post at the Official Google Webmaster Blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dirjournal.com/articles/understanding-and-creating-xml-sitemaps/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>The Travel Industry &amp; Twitter &#8211; Virgin America Sets the Bar</title>
		<link>http://www.dirjournal.com/articles/the-travel-industry-twitter-virgin-america-sets-the-bar/</link>
		<comments>http://www.dirjournal.com/articles/the-travel-industry-twitter-virgin-america-sets-the-bar/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 05:22:10 +0000</pubDate>
		<dc:creator>Alysson Fergison</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[building rapport]]></category>
		<category><![CDATA[travel industry]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.dirjournal.com/articles/?p=554</guid>
		<description><![CDATA[As Twitter goes mainstream, more and more companies are jumping on the bandwagon and recognizing how useful it can be.  Twitter isn’t just for geeky computer types with nothing better to do with their time than talk to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a title="California Dreaming VX A320 N622VA" href="http://www.flickr.com/photos/40563877@N00/1544145344/" target="_blank"><img src="http://farm3.static.flickr.com/2018/1544145344_193d397cf7.jpg" border="0" alt="California Dreaming VX A320 N622VA" /></a><br />
As Twitter goes mainstream, more and more companies are jumping on the bandwagon and recognizing how useful it can be.  Twitter isn’t just for geeky computer types with nothing better to do with their time than talk to their friends 140 characters at a time.  Quite the opposite, really.  Twitter is quickly becoming a communication medium of choice between companies in a variety of industries and their customers.<span id="more-554"></span></p>
<p>The travel industry is no different.  With airlines like <a title="Virgin America on Twitter" href="http://twitter.com/VIRGINAMERICA" target="_blank">Virgin America</a> and <a title="British Airways on Twitter" href="http://twitter.com/BritishAirways" target="_blank">British Airways</a>, as well as cruise lines like <a title="Carnival Cruises on Twitter" href="http://twitter.com/CarnivalCruise" target="_blank">Carnival</a> and <a title="Crystal Cruises on Twitter" href="http://twitter.com/crystalcruises" target="_blank">Crystal Cruises</a> already on board and using Twitter regularly to communicate everything from vacation specials to possible flight delays, the impact of Twitter can be felt throughout the travel industry.  While vacation specials and flight related information would be something you’d expect an airline to share via Twitter, the interaction doesn’t stop there.</p>
<h3>Virgin America Really Gets It Right</h3>
<p>Virgin America is using Twitter somewhat differently than other companies in the travel sector &#8211; they seem to be interested in using it to build a rapport with its target audience.  After all, isn’t that what Twitter is for?  What’s different about Virgin’s approach to Twitter?  It’s genuine.  You can clearly tell there is a human being at the other end of that Twitterstream and that’s a welcome change in today’s cold world of corporate policies and standard operating procedures that leave we human beings feeling as if all companies care about is our money.</p>
<p>What Virgin is trying to do is remind its customers that there are people behind the company – people that genuinely care about having fun, working together and creating a pleasant experience for Virgin’s customers every day.  It’s refreshing, to say the least.  Most of all, Virgin actually interacts with people via Twitter.  Who?  Huh?  What?  That’s right…real person-to-person interaction.  Here is a perfect example:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.seoaly.com/images/virgin-tweets.jpg" alt="Virgin America Twitter Conversation" /></p>
<p>Virgin actively engages its Twitterverse regularly and with far more than just flight delays and vacation specials.  I applaud their efforts and hope that other companies take a close look at what they are doing from a public relations standpoint – and more importantly – I hope other companies follow suit.  Not only does Virgin ask their customer for feedback, they share those experiences openly in their own Twitterstream.  They ask what they’re doing well and what they could be doing better – and then expect to get answers.</p>
<p>Perhaps one of the most impressive aspects of Virgin’s Twitterstream are the images.  At first glance, it seems a bit odd to see so many images in a company’s tweets.  That is, until you realize the origin of the images – Virgin’s customers.  These are not high-dollar professional marketing photographs being used to psychologically lure consumers into believing that Virgin is awesome because of their imagery.  These are images taken by Virgin’s passengers.</p>
<p>The subjects of the photos vary from terminals and gates to scenery taken out the window during the flight to the aircrafts themselves, but the fact that Virgin encourages its travelers to interact with them in such a way is what is truly impressive – and may prove to be revolutionary.  Stop and think about it for a moment…you take a picture of the monitor in front of you on a Virgin flight, post it to Twitter letting your followers know you’re watching a college football game during your flight home.  Later you see that Virgin has retweeted that image.  Doesn’t that build rapport and make you feel as though Virgin is listening &#8211; that they may actually care about the experience they’re creating for their passengers?</p>
<h3>Following Virgin’s Lead</h3>
<p>If Virgin is monitoring something as seemingly benign and innocuous as the scenario above, imagine how responsive they would be in the event that one of their passengers had some sort of customer service related issue?  How do you suppose Virgin finds this information in the first place?  Chances are, they’re using <a title="Twitter Search" href="http://search.twitter.com/" target="_blank">Twitter Search</a> – and so should you!  That may be one of many tools they’re using, but Twitter Search is certainly easy to use and allows you to search tweets in real time, so when someone’s tweet includes “Virgin America”, it will show up in the search results immediately – an invaluable online reputation monitoring tool, to say the least.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.seoaly.com/images/twitter-search.jpg" alt="Twitter Search Example" /></p>
<p>The lesson to be learned from Virgin America is this:  introduce a human factor back into your company’s interaction with customers.  What makes Virgin’s use of Twitter so impressive is that it isn’t full of corporate mission statements and canned phrases clearly written by marketing people in an attempt to manipulate the masses.  These are one-on-one interactions between whoever is charged with monitoring their Twitter account and actual Virgin customers.  It’s not merely corporate jargon and marketing-ease.  Virgin is clearly interested in building a rapport with their passengers and creating repeat business as a result of it.  What are you doing to build a rapport with your target audience?  Are you speaking their language?  More importantly, are you communicating with them using the mediums they’re using to communicate with each other about you?</p>
<p><small><a title="Attribution-ShareAlike License" href="http://creativecommons.org/licenses/by-sa/2.0/" target="_blank"><img src="http://www.dirjournal.com/articles/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="bribriTO" href="http://www.flickr.com/photos/40563877@N00/1544145344/" target="_blank">bribriTO</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dirjournal.com/articles/the-travel-industry-twitter-virgin-america-sets-the-bar/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Modern Link Building Techniques That Work</title>
		<link>http://www.dirjournal.com/articles/modern-link-building-techniques-that-work/</link>
		<comments>http://www.dirjournal.com/articles/modern-link-building-techniques-that-work/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 02:49:47 +0000</pubDate>
		<dc:creator>Alysson Fergison</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[follow]]></category>
		<category><![CDATA[link building]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[nofollow]]></category>

		<guid isPermaLink="false">http://www.dirjournal.com/articles/?p=543</guid>
		<description><![CDATA[There is no quick and easy way to build links.  If something is quick and easy, it’s almost guaranteed to be worthless.  Building links is no different.  Before going any further, you should understand the difference between FOLLOW [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>There is no quick and easy way to build links.  If something is quick and easy, it’s almost guaranteed to be worthless.  Building links is no different.  Before going any further, you should understand the difference between FOLLOW and NOFOLLOW links.  If you’re unsure, “<a title="What Are DoFollow Links?  What Is NoFollow?  Remove the Mystery" href="http://www.technologies-knowledge.org/2008/12/30/what-are-dofollow-links-what-is-nofollow-remove-the-mystery.html" target="_blank">What are DoFollow links?  What is NoFollow?  Remove the mystery</a>” should help you understand.</p>
<p>Unless you are using a Firefox plugin – such as <a title="SearchStatus" href="https://addons.mozilla.org/en-US/firefox/addon/321" target="_blank">SearchStatus</a> or <a title="SEO for Firefox" href="http://tools.seobook.com/firefox/seo-for-firefox.html" target="_blank">SEO For Firefox</a>, you would never know that many of the links you click on during your time online are NOFOLLOW links.  Just because a link is NOFOLLOW doesn’t mean it holds no value.  NOFOLLOW links from sources like StumbleUpon, Digg and Twitter still hold a great deal of value due to their potential to drive traffic.  They aren’t, however, useful for increasing a site’s inbound link count.<span id="more-543"></span></p>
<h3>Directories – Easy to Get, but Low Value</h3>
<p>Keep in mind that the easier a link is to get, the less value it will hold in the grand scheme of things.  What do I mean by that?  Online directories are a great example.  There are thousands of directories and a decent percentage of them offer free submission.  It can take several weeks for a link to appear as a result of a free submission, but they’re not hard links to obtain.</p>
<p>Many directories also offer a few paid options, typically ranging from a few bucks up to about $20 for a basic link.  You’re not paying for the link – you’re simply paying to jump to the front of the line and have your link added to the directory faster.  So, the moral of the story – if the link is easy to get, it’s on the low end of the totem pole of value.</p>
<h3>Social Media – Great Traffic Sources, and Some Link Popularity Too</h3>
<p>The popularity of social networking has led to the development of a seemingly endless number of sites with a social focus.  While many of these, like Digg and StumbleUpon, employ NOFOLLOW links, some – like Reddit – don’t use exclusively NOFOLLOW links.  That said, not only do links from these sources have the potential to drive visitors directly from the sites themselves, but links from them also count toward your site’s overall inbound link count.</p>
<p>Keep in mind that it is not only the sites themselves that can provide you with much needed inbound links.  The profiles you set up on them often include links to your website that have FOLLOW links.  BrightKite, Technorati, and Identi.ca profiles, for instance, all provide FOLLOW links.</p>
<h3>Blogs – Become Part of Your Industry’s Online Community</h3>
<p>As long as inbound links and PageRank play such a significant role in ranking, building links back to your site or to individual posts on your blog is essential.  Laying the ground work for future link building possibilities and enticing others to link to you of their own accord is all about building relationships.</p>
<p>Don’t underestimate the value to being active within the blogs and forums that cater to your industry or complimentary industries.  While many blog comment sections incorporate NOFOLLOW links by default, many do not.  Even the NOFOLLOW comment links hold value – particularly if you’re commenting on a highly trafficked blog – but only blogs that use FOLLOW links in the comments sections will increase your site’s number of inbound links.</p>
<p>There are plenty of blogs and forums that use FOLLOW links.  <a title="Monty's Mega Marketing" href="http://www.montysmegamarketing.com/do-follow-forums-the-mega-list" target="_blank">Monty’s Mega Marketing</a>, <a title="JR's Internet Marketing Strategies" href="http://getinternetmarketingstrategies.com/2008/11/do-follow-forums/" target="_blank">JR’s Internet Marketing Strategies</a>, <a title="Court's Internet Marketing School" href="http://courtneytuttle.com/blogs-that-follow/" target="_blank">Court’s Internet Marketing School</a>, <a title="Life Learning Today" href="http://lifelearningtoday.com/2007/05/10/easy-link-building-tip-check-out-the-d-list/" target="_blank">Life Learning Today</a>, and <a title="Tucson SEO Solutions" href="http://tucsonseosolutions.com/dofollowlistoflists" target="_blank">Tucson SEO Solutions</a> each provide lists of FOLLOW blogs and forums that you can use to get started.</p>
<p>Here’s a tip – don’t be a tool.  If you do nothing but drop links to your site without contributing something useful and worthwhile to the community as a whole, you’ll soon be dismissed as a spammer.  Yes, the comments you leave on a blog or forum using FOLLOW links may still help with link popularity, but wouldn’t it be nice if those comments actually encourage people to visit your site or blog, as well.</p>
<p>Remember, building links isn’t just about building links – it is about building relationships and exposing your site to as many potential visitors as possible, then providing those visitors with something of value upon their arrival.</p>
<h3>Link Baiting – Enticing Other Sites to Link to You</h3>
<p>These are the most difficult links to get.  Unlike directory listings, blog comments and social media profiles, you have no real control over these links.  You may be able to influence their decision in a variety of ways, including coming right out and asking for the link, but the decision is ultimately in someone else’s hands entirely.</p>
<p>Here are some tips that will help your keep a visitor’s attention and entice others to link to it:</p>
<ol>
<li>Make a good first impression.  We’ve all heard that before, but the adage holds true online, too.  You’ve got a few seconds to make a good impression and that’s it.  Problems like broken links and images that don’t load quickly lead to frustration and reduce the chance of someone wanting to link to your site.</li>
<li>Give people a reason to come back.  If your site is made up of five static pages that tell about your business and your products, visitors have no reason to come back or link to you.  Provide something of value on a regular basis – like a useful blog post &#8211; and people are more likely to come back, as well as link to you.</li>
<li>Be YOU!  Whether you’re a one-person operation or there are 10,000 members on your team, the website should have a personality.  People are tired of the same old corporate line of bull, which is why Social Media has taken off like a rocket.  People want to deal with people – not corporate entities.  Give visitors a glimpse into who you are and they’re much more likely to find something of value worth linking to.</li>
<li>Don&#8217;t be afraid of controversy, but understand the difference between controversial and offensive.  You don&#8217;t want to shy away from controversial topics because controversy breeds traffic and encourages other sites to link to you.  You do, however, want to avoid alienating huge groups of people.  Tackling a controversial topic can backfire &#8211; approach it carefully and with a clear purpose.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dirjournal.com/articles/modern-link-building-techniques-that-work/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Monitoring and Managing Your Online Reputation in a Web 2.0 World</title>
		<link>http://www.dirjournal.com/articles/monitoring-and-managing-your-online-reputation-in-a-web-20-world/</link>
		<comments>http://www.dirjournal.com/articles/monitoring-and-managing-your-online-reputation-in-a-web-20-world/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 04:30:20 +0000</pubDate>
		<dc:creator>Alysson Fergison</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[online reputation management]]></category>
		<category><![CDATA[online reputation monitoring]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://www.dirjournal.com/articles/?p=519</guid>
		<description><![CDATA[Nothing is more important in today&#8217;s world of social networking and Web 2.0 than your online reputation.  Dipping a toe into that pool for the first time can be intimidating.  Millions of people use Social Media outlets, blogs, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="image" title="shutterstock_5543479" src="http://www.dirjournal.com/articles/wp-content/uploads/2009/01/shutterstock_5543479.jpg" alt="shutterstock_5543479" width="578" height="319" /></p>
<p>Nothing is more important in today&#8217;s world of social networking and Web 2.0 than your online reputation.  Dipping a toe into that pool for the first time can be intimidating.  Millions of people use Social Media outlets, blogs, social networking and bookmarking sources on a daily basis &#8211; not only to discuss products, services and brands, but to share their experiences with others.  If you&#8217;re not actively monitoring and managing your online reputation, you&#8217;re falling behind countless individuals and companies that already are.</p>
<p>Knowing what is being said about you online is essential, whether from a personal or business standpoint.  More and more employers and prospective customers use the Internet to research a people and products by name, rather than simply relying on a resume, online profile or company website for information.</p>
<p>If you&#8217;re looking for a job, chances are anyone considering you for employment will Google you long before contacting you about a position.  If you don&#8217;t know what publicly accessible information exists, you are doing yourself a great disservice.  One of the best things you can do to manage your own reputation is start your own blog and make sure it ranks well when someone uses your name in a keyword search.<span id="more-519"></span></p>
<h3>Free Reputation Monitoring Tools</h3>
<p>Google offers a free service called &#8220;Google Alerts&#8221; (<a title="Google Alerts" href="http://google.com/alerts" target="_blank">google.com/alerts</a>) that will help you learn more about the conversations going on about you or your brand online.  While the information is useful, it is very basic and doesn&#8217;t provide a great deal of detail &#8211; nor does it include everything that may exist about you online.  That said, it should be first on your “to-do” list when working to monitor your reputation online.</p>
<p>Setting up a Google Alert couldn&#8217;t be easier &#8211; simply access your Google account and follow the &#8220;Alerts&#8221; link in the administration page.  If you&#8217;re managing your personal reputation, you will obviously want to set up an alert for your name (and for any variations of it that may be used when people mention you).</p>
<p>If you&#8217;re hoping to learn more about what the world is saying about your business, you will want to set up an alert for the name of your business &#8211; as well as your specific product names and/or the services that you offer.  Yahoo! offers a similar service, not surprisingly called &#8220;Yahoo! Alerts&#8221; (<a title="Yahoo! Alerts" href="http://alerts.yahoo.com" target="_blank">alerts.yahoo.com</a>).</p>
<h4>Creating Custom RSS Feeds</h4>
<p>You can also monitor your online reputation on sources like <a title="Technorati Search" href="http://technorati.com/search/" target="_blank">Technorati</a>, <a title="Yahoo! News" href="http://news.search.yahoo.com/news" target="_blank">Yahoo! News</a>, <a title="Google News" href="http://news.google.com/news" target="_blank">Google News</a> and <a title="BlogPulse" href="http://www.blogpulse.com/" target="_blank">BlogPulse</a> by setting up RSS feeds that will deliver results directly to your RSS reader of choice.  Technorati, for instance, allows you to set up &#8220;Watchlists&#8221; for selected terms.  These terms could be your name, your company, your brand, your products or anything else you want to keep tabs on.  You can then subscribe to your own watchlists via RSS.</p>
<p>BlogPulse offers a similar service, called &#8220;Search the Blogosphere&#8221;, which you can then subscribe to and receive updates via RSS.  That way you don’t need to take the time to log in and search manually on a daily or weekly basis – the results are delivered to your RSS reader automatically.  Yahoo! and Google News provide the same ability to set up RSS feeds.</p>
<h4>Monitoring Social Media Sources</h4>
<p>Using <a href="http://www.visibletechnologies.com/">Social Media monitoring</a> is also essential.  With the rise of Social Media, Internet users now have an unprecedented platform for sharing their experiences, thoughts and opinions with millions of other users whenever the urge strikes them.</p>
<p>We can communicate with each other in ways that were never possible before Social Media and networking sources like <a title="Twitter" href="http://www.twitter.com" target="_blank">Twitter</a>, <a title="StumbleUpon" href="http://www.stumbleupon.com" target="_blank">StumbleUpon</a>, <a title="Digg" href="http://www.digg.com" target="_blank">Digg</a>, <a title="Facebook" href="http://www.facebook.com" target="_blank">Facebook</a> and <a title="YouTube" href="http://www.youtube.com" target="_blank">YouTube</a>.  We are able to connect with one another on a real-time basis – sharing our experiences, making recommendations and exchanging information on an enormous scale.  I highly recommend using Twitter&#8217;s search feature (<a title="Twitter Search" href="http://search.twitter.com" target="_blank">search.twitter.com</a>) on a regular basis to keep tabs of real-time conversations going on about you, your company, your brand or your products and services.</p>
<p>Most popular Social Media sources use what are called &#8220;tags&#8221;.  When a user writes a review or a post or carries on a discussion, they include what are called tags that identifies what the information is in reference to.  My favorite tag search service is called <a title="Keotag" href="http://www.keotag.com" target="_blank">Keotag</a> and it tops my list because it provides access several to Social Media and networking sources on one easy to use platform.</p>
<p>Like Techorati and Blogpulse, Keotag allows you to subscribe to RSS feeds for the tags and sources you choose.  Blog Catalog also offers a new &#8220;Social Search&#8221; feature that you can use to search for mentions of your selected terms (your name, your brand, your products, etc.) across a variety of Social Media and networking outlets like Twitter, StumbleUpon and Facebook.</p>
<h3>Paid Online Reputation Monitoring</h3>
<p>It&#8217;s important to mention that in addition to the free services mentioned above, there are a variety of paid services you can subscribe to that will help you monitor your online reputation and keep tabs on where your name and/or brand are mentioned on the Internet.  Services, like <a title="Trackur" href="http://www.trackur.com" target="_blank">Trackur</a> and <a title="Reputation Defender" href="http://www.reputationdefender.com/" target="_blank">Reputation Defender</a>, provide a great deal more detail, control and flexibility over monitoring your reputation.</p>
<p>It&#8217;s important to understand that monitoring your reputation is very different from managing your reputation.  Monitoring, meaning simply knowing what is being said, is a passive strategy.  It is equally important, if not more so, to take an active role in developing your online reputation.</p>
<h3>Take an Active Approach to Your Online Reputation</h3>
<p>There are seemingly innumerable resources out there that you can use to promote what you want people to know about yourself or your business.  Social networks are a great way to manage your reputation and increase your presence online and in the search results.  If someone were to search for you by name or for your company by brand, what information would they find?  You have more control over that than you might think.</p>
<p>Take <a title="LinkedIn" href="http://www.linkedin.com" target="_blank">LinkedIn</a>, for instance.  LinkedIn is a networking tool for professionals.  Many believe that LinkedIn is little more than an online resume, but it is much more than that.  LinkedIn is a powerful tool for creating an online presence for yourself and your company by utilizing a variety of applications, creating a network of “connections” and obtaining recommendations from those you and your company have worked with over time.  LinkedIn also performs well in search results in major search engines, giving you and your company more exposure in search results.</p>
<p>There are a large number of ways to increase your presence in search results and actively manage your online reputation.  Keep in mind that the more Social Media and networking profiles you create, the more likely they are to show up in the search results for your name or your company name.  To look at it in a different way, if someone has said something negative about you online it may be important for you to try to bury that information further down in the search results so it isn&#8217;t among the first things to grab a search users attention.</p>
<p>Furthermore, the more results there are for your name or company name in the search results, the more reputable and reliable you or your company will seem to the person searching &#8211; and the less significant a negative comment will seem.  As Web 2.0 continues to evolve into Web 3.0, Web 4.0 and Web 999.0, it will be essential to have profiles on as many sources as possible, as you never know where someone might be searching for you or your company.</p>
<p>In addition to creating your own website and/or blog, you should create profiles and accounts using sources like <a title="MyBlogLog" href="http://www.mybloglog.com/" target="_blank">MyBlogLog</a>, <a title="Squidoo" href="http://www.squidoo.com/" target="_blank">Squidoo</a>, <a href="http://www.twitter.com">Twitter</a>, <a title="Visual CV" href="http://www.visualcv.com/" target="_blank">VisualCV</a>, Google Profiles (which you set up through your Google account admin page), <a title="Digg" href="http://www.digg.com" target="_blank">Digg</a>, <a title="Fark" href="http://www.fark.com" target="_blank">Fark</a>, <a title="Mixx" href="http://www.mixx.com" target="_blank">Mixx</a> and many more.  If you’re not sure where to start, I recommend checking out <a title="Social Marker" href="http://www.socialmarker.com" target="_blank">Social Marker</a> where you will find a list of some of the most widely used and popular social bookmarking and networking websites available today.  It certainly isn’t an all-inclusive list, but it is a great place to start for someone venturing into the realm of Social Media, networking and bookmarking for the very first time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dirjournal.com/articles/monitoring-and-managing-your-online-reputation-in-a-web-20-world/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Learn the Basics of Keyword Research</title>
		<link>http://www.dirjournal.com/articles/learn-the-basics-of-keyword-research/</link>
		<comments>http://www.dirjournal.com/articles/learn-the-basics-of-keyword-research/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 04:26:05 +0000</pubDate>
		<dc:creator>Alysson Fergison</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[keyword research]]></category>
		<category><![CDATA[on-page seo]]></category>

		<guid isPermaLink="false">http://www.dirjournal.com/articles/?p=402</guid>
		<description><![CDATA[Imagine that you were about to embark on a cross country drive from New York to Los Angeles.  Now imagine that you have no GPS, no map and no idea where you’re going.  That is exactly what trying [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Imagine that you were about to embark on a cross country drive from New York to Los Angeles.  Now imagine that you have no GPS, no map and no idea where you’re going.  That is exactly what trying to optimize a site without doing keyword research is like.  <strong>Nothing is more important to your initial SEO strategy than keyword research.</strong> Many small business owners don’t even know where to begin, so the effort put into optimizing a site to perform well in organic search results is often wasted and the ultimate result is a great deal of frustration.<span id="more-402"></span></p>
<p>It would be pretty easy to rank in the number one position for “supercalifragilisticexpialidocious cupcakes”, but how many people actually use that term in a keyword search?  I’ll answer that question for you:  none.  Step one of any organic SEO strategy must be to identify the keyword terms that apply to your site and determine which of them generate the greatest number of searches.  Without keyword research there is no way to properly optimize the title, META tags, text content, etc.</p>
<h3>Step 1:  Finding Popular Keyword Terms</h3>
<p>Choosing and sticking to some good <a href="http://www.omniture.com/en/products/visitor_acquisition/searchcenter" target="_blank">search engine marketing software</a> is the key. There are a large number of keyword suggestion tools to choose from.  I have selected the three that follow for their ease of use…and it doesn’t hurt that they’re also free.</p>
<ul>
<li><a title="Free Keyword Suggestion Tool from Keyword Discovery" href="http://www.keyworddiscovery.com/search.html" target="_blank">Free Keyword Suggestion Tool from Keyword Discovery</a> – this is the most simple and straight forward of the featured tools.  Rather than reporting the average number of searches from each search engine individually, it consolidates the number of searches from various search engines into one, easy to understand average number.  It’s a good tool to use to get an idea of the popularity of a particular search term in a very general sense.This tool also provides a list of terms based on the seed keyword you start with.  For example, if you input the term “ipod”, this tool will report the average number of searches done for that specific term, as well as the average number of searches for other terms that include the original seed keyword &#8211; like “ipod touch”, “ipod nano”, etc.</li>
</ul>
<ul>
<li><a title="SEO Book Keyword Suggestion Tool" href="http://tools.seobook.com/keyword-tools/seobook/" target="_blank">SEO Book Keyword Suggestion Tool</a> – this tool operates under the same premise as Keyword Discovery’s free tool, but it provides much more detailed information.  The SEO Book tool provides results from Google, Yahoo! and MSN separately, rather than combining the estimated searches into one all-inclusive number.  SEO Book also provides links to other useful research tools like Google Trends, Google Suggest and Google Insights.Like the Keyword Discovery tool, this tool provides a list of related terms that include the term input in your initial query.  While the amount of information provided by this tool can seem overwhelming initially, it is a good idea to familiarize yourself with this data – if not right away, then at some point in the future.  This is one of my favorite tools.</li>
</ul>
<ul>
<li><a title="Google Adwords Keyword Tool" href="https://adwords.google.com/select/KeywordToolExternal" target="_blank">Google Adwords Keyword Tool</a> – perhaps the most noteworthy feature of this tool is that it actually comes from Google.  Essentially that means that you’re gleaning the data right from the horse’s mouth, so to speak.  Yes, you do have to have and be logged in to your Google Account.  If you don’t have a Google Account, <a title="Set Up A Google Account" href="https://www.google.com/accounts/NewAccount?continue=https://www.google.com/accounts/ManageAccount" target="_blank">sign up for one</a>.Google’s keyword tool is particularly useful because, unlike the other two, it also provides a list of related terms that don’t necessarily include the actual seed keyword.  What does that mean exactly?  In short, it means you may input the term “ipod” as the seed keyword, but the Google Adwords tool will provide you with search volume data for related terms like “mp3 player” and “4th generation”.  This is a just a glimpse into how search engines have evolved over time and that organic search results are generated based not only on the specific term used in the query, but on <a title="Semantically Related Terms" href="http://www.seobook.com/archives/000657.shtml" target="_blank">semantically related terms</a>.</li>
</ul>
<h3>Step 2:  Assessing Keyword Term Competition</h3>
<p>Now that you’ve created a list of popular terms that apply to your site, the next step is determining how competitive those terms are.  Let’s be honest…”ipod” may be the most popular term that applies to your website, but that doesn’t mean it is a good term to target.  The competition for that term is ridiculously high.  That said, there are several ways to assess the competitiveness of a search term so you can choose realistic terms that apply to your website.</p>
<p>First, simply do a Google search using the term.  This is a very basic approach, but it can provide useful information and help you avoid wasting time doing more in-depth research into a term’s competition.  When you input “ipod” into a Google search the query returns about 240 million results.  Move on.  Focusing on a term with such enormous competition is not realistic for most websites.  Targeting a more specific term, like “refurbished ipod nano”, increases your likelihood of success substantially.</p>
<p>Once you’ve checked out the terms by doing a normal search, it’s time to take things a step further.  Rather than simply using the term itself in the search this time, input the term preceded by “allintitle:” (i.e. “<a title="allinanchor: Sample Results" href="http://www.google.com/search?q=allintitle%3Arefurbished+ipod+nano&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a" target="_blank">allintitle:refurbished ipod nano</a>” – without the quotation marks, of course).  This query will let you know how many website pages exist what that particular target term in the page title.</p>
<p>Similarly, doing a query for the same keyword term preceded by “allinanchor:” (i.e. “<a title="allintitle: Sample Results" href="http://www.google.com/search?hl=en&amp;safe=off&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=uGB&amp;q=allinanchor%3Arefurbished+ipod+nano&amp;btnG=Search&amp;aq=f&amp;oq=" target="_blank">allinanchor:refurbished ipod nano</a>” – again, without he quotation marks) will let you know the number of pages linked to with that particular anchor text.  Because the search engines use the anchor text of links to a page to help them to determine what a given page is about, anchor text is very important them.  Search engines also take the anchor text and number of links into account when ranking a page for that term, so knowing how many pages are linked to using that term is very useful.  As you would expect, the larger the number of results for the allintitle: and allinanchor: queries, the greater the competition is for that term.</p>
<h3>Putting the Pieces Together</h3>
<p>Once you’ve gathered useful competitive data on the list of applicable target terms for your site, the question becomes what to do next.  Rather than trying to optimize a page for an unrealistic term, like “ipod”, you can use the data you’ve collected via the allintitle: and allinanchor: queries to choose terms that are popular, but not ultra-competitive.  That is the key to developing a successful organic SEO strategy for your website – not only as it relates to on-page SEO factors titles, META tags and text content, but to link building strategies, as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dirjournal.com/articles/learn-the-basics-of-keyword-research/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

