<?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>Website Design &#38; SEO for Small Business &#187; On-Site SEO</title> <atom:link href="http://www.seoaly.com/on-site-seo/feed/" rel="self" type="application/rss+xml" /><link>http://www.seoaly.com</link> <description>Affordable SEO Audits, Keyword Research &#38; Wordpress Website Design</description> <lastBuildDate>Tue, 08 May 2012 17:14:45 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>w3 Total Cache &amp; Canonical URL Issues</title><link>http://www.seoaly.com/w3-total-cache-canonical-url-issues/</link> <comments>http://www.seoaly.com/w3-total-cache-canonical-url-issues/#comments</comments> <pubDate>Fri, 20 May 2011 12:00:14 +0000</pubDate> <dc:creator>Alysson</dc:creator> <category><![CDATA[On-Site SEO]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[canonical URL issues]]></category> <category><![CDATA[w3 total cache]]></category> <category><![CDATA[www vs. non-www]]></category><guid isPermaLink="false">http://www.seoaly.com/?p=1802</guid> <description><![CDATA[<p>If you follow me on Twitter, you may have noticed a tweet from me a while back lamenting a conflict between a caching plugin and the 301 redirect from non-www to www (or vice versa &#8211; whichever is the preferred URL for a given site).  From time to time I check to make sure that [...]</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/w3-total-cache-canonical-url-issues/">w3 Total Cache &#038; Canonical URL Issues</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p> Related posts:<ol><li><a href='http://www.seoaly.com/canonical-url-issues-and-link-equity/' rel='bookmark' title='Canonical URL Issues and Link Equity'>Canonical URL Issues and Link Equity</a></li></ol>]]></description> <content:encoded><![CDATA[<div id="attachment_1803" class="wp-caption alignleft" style="width: 169px"><a href="http://www.flickr.com/photos/shuttermonkey/3424750103/sizes/s/"><img class="size-full wp-image-1803" title="lightbulb" src="http://www.seoaly.com/wp-content/uploads/lightbulb.jpg" alt="Lightbulb Moment" width="159" height="240" /></a><p class="wp-caption-text">Photo By: shuttermonkey</p></div><p>If you follow me on <a href="http://www.seoaly.com/dont-be-a-twitter-tool/">Twitter</a>, you may have noticed a tweet from me a while back lamenting a conflict between a caching plugin and the 301 redirect from non-www to www (or vice versa &#8211; whichever is the preferred URL for a given site).  From time to time I check to make sure that the non-www URLs of pages on my site are being properly redirected to the www URLs.</p><p>Some time after I started using the <a href="http://wordpress.org/extend/plugins/w3-total-cache/" target="_blank">w3 Total Cache plugin</a>, that stopped happening.  I was not bursting with fruit flavor, but hey&#8230;what are ya gonna do?  It&#8217;s a free plugin.  And one that, to that point, had served me very well.  After tweeting about the issue, one of the plugin&#8217;s developers responded that it was an issue they were aware of and that it would hopefully be resolved in a future release.</p><p>I was happy to hear that, but in the interim and despite how much I liked the w3 Total Cache plugin, I decided to stop using it.  Instead I went back to using <a href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">WP Super Cache</a>, which did not interfere with the 301 redirect.  When the latest version of w3 Total Cache was released, I tried it again&#8230;hoping the issue had been resolved.  Much to my dismay, it hadn&#8217;t.  So, back to WP Super Cache I went.  Again.</p><p>While I believe certain features of w3 Total Cache &#8211; like browser caching, object caching and built in minify functions, make it the better caching plugin, as an <a href="http://www.seoaly.com">SEO</a> the idea of my site having www/non-www canonical issues really stuck in my craw.  Since that&#8217;s an issue I always advise site owners to resolve to help mitigate potential <a href="http://www.seoaly.com/canonical-url-issues-and-link-equity/">link equity</a> issues, I can&#8217;t in good conscience not practice what I preach.</p><p>That said, I&#8217;m a stubborn geek.  And I wanted to find a way to use what I believe to be a superior plugin without having my site continue to suffer from www/non-www <a href="http://www.seoaly.com/canonical-url-issues-and-link-equity/">canonical URL issues</a>.  I&#8217;ve found a solution that is working.  So, I thought I&#8217;d share it with you.  <em><strong>DISCLAIMER:</strong></em> DO NOT do this unless you know what you&#8217;re doing and know how to fix any problems that may occur as a result of modifying your .htaccess file.  I will not be held responsible if you bork your site.  <span style="text-decoration: underline;">Consider this your warning!</span></p><p>All I had to do was place the following code <span style="text-decoration: underline;"><strong>at the beginning</strong></span> of my .htaccess file (before # BEGIN WordPress and # BEGIN W3TC Browser Cache):</p><blockquote><p>&lt;IfModule mod_rewrite.c&gt;<br /> RewriteEngine On<br /> RewriteCond %{HTTP_HOST} ^<em><strong>domain</strong></em>\.com$ [NC]<br /> RewriteRule ^(.*)$ http://www.<em><strong>domain</strong></em>.com/$1 [R=301,L]<br /> &lt;/IfModule&gt;</p></blockquote><p>I realize this is the standard code for a 301 redirect, but it had not appeared in my .htaccess file before and the non-www URLs had still always 301 redirected to www URLs &#8211; I assume as a basic function of WordPress itself.  That is until the w3 Total Cache plugin was installed, which suggests that it is conflict between a built in function of WordPress and the w3 Total Cache plugin.  Some of you code wonks out there probably know the answer.  I do not profess to be a code wonk, so I can only speculate.</p><p>This will only work for sites running on Apache and obviously you need to replace&#8221;<em><strong>domain</strong></em>&#8221; with YOUR domain.  DUH!  And if I have to tell you to be sure to change .com to .net, .info, .whatever if your domain isn&#8217;t a .com, you should stop reading now.  No, seriously&#8230;just stop.  This is not the post for you.</p><p>Also, if you don&#8217;t know what an .htaccess file is and where to find it, as well as what type of server your site runs on (Windows vs. Linux) and whether it&#8217;s running Apache, well&#8230;you probably would have/should have stopped reading already.  If you didn&#8217;t, sorry I wasted your time.  File this in the &#8220;for future reference&#8221; folder.</p><p>So, if you&#8217;ve got a WordPress site hosted on an Apache server and you&#8217;ve been having trouble with www vs. non-www canonical URL issues because of w3 Total Cache, I hope this solves your problem.  I&#8217;ve used this solution on several sites now without a hitch.  If you implement it and it works for you, please come back to let me know.  Good luck!</p><p>And remember&#8230;<em><strong>DON&#8217;T EVEN TRY THIS UNLESS YOU KNOW WHAT YOU&#8217;RE DOING! </strong></em>Seriously.  As you were.  :)</p><p>NOTE:  The solution provided above will redirect non-www URLs to www URLs (my personal preference).  If you want to do the opposite, <a href="http://www.twitter.com/netmeg/" target="_blank">Meg Geddes</a> was nice enough to provide her advice below.  Thanks, Meg!</p><div class="shr-publisher-1802"></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fw3-total-cache-canonical-url-issues%2F' data-shr_title='w3+Total+Cache+%26+Canonical+URL+Issues'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fw3-total-cache-canonical-url-issues%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fw3-total-cache-canonical-url-issues%2F' data-shr_title='w3+Total+Cache+%26+Canonical+URL+Issues'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><p>Related posts:<ol><li><a href='http://www.seoaly.com/canonical-url-issues-and-link-equity/' rel='bookmark' title='Canonical URL Issues and Link Equity'>Canonical URL Issues and Link Equity</a></li></ol></p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/w3-total-cache-canonical-url-issues/">w3 Total Cache &#038; Canonical URL Issues</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p>]]></content:encoded> <wfw:commentRss>http://www.seoaly.com/w3-total-cache-canonical-url-issues/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>The Dangers of Oversimplifying Niche SEO</title><link>http://www.seoaly.com/the-dangers-of-oversimplifying-niche-seo/</link> <comments>http://www.seoaly.com/the-dangers-of-oversimplifying-niche-seo/#comments</comments> <pubDate>Thu, 19 Aug 2010 13:36:05 +0000</pubDate> <dc:creator>Alysson</dc:creator> <category><![CDATA[On-Site SEO]]></category> <category><![CDATA[Organic SEO]]></category> <category><![CDATA[Shenanigans]]></category> <category><![CDATA[niche SEO]]></category><guid isPermaLink="false">http://www.seoaly.com/?p=1435</guid> <description><![CDATA[<p>About two months ago I built a new website for a wedding planner in houston.  This client also happens to be a friend of mine from high school.  Knowing what I did for a living, she reached out for some help improving their website and building a more professional &#38; consistent online brand.  Of course, I [...]</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/the-dangers-of-oversimplifying-niche-seo/">The Dangers of Oversimplifying Niche SEO</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p> No related posts.]]></description> <content:encoded><![CDATA[<p><img class="alignleft" style="border: 0px initial initial;" src="http://farm5.static.flickr.com/4121/4806043442_d66d10ebc2_m.jpg" border="0" alt="Danger sign" width="159" height="240" />About two months ago I built a new website for a <a href="http://www.polishedweddingplanning.com" target="_blank">wedding planner in houston</a>.  This client also happens to be a friend of mine from high school.  Knowing what I did for a living, she reached out for some help improving their website and building a more professional &amp; consistent online brand.  Of course, I was happy to help.  When I began the project their existing website didn&#8217;t rank in any search engine for any keyword term other than their exact brand name.</p><p>As is the case with many small business websites these days, there were many opportunities for improvement.  From titles to text content to the development of a strong site architecture and internal link structure, the site was in need of a head-to-toe overhaul and a facelift.  The old site was pretty basic, didn&#8217;t incorporate much text content and only had a handful of pages.  Not only did the site not perform well in a keyword search at that point, the original design also had some usability and branding challenges to overcome.<span id="more-1435"></span></p><p>I couldn&#8217;t let that continue and not long thereafter my friend and her business partner had a shiny new website that, if I do say so myself, is something they can proudly rely on to represent their brand online.  I know what you&#8217;re thinking, &#8220;But, Alysson&#8230;it doesn&#8217;t matter if it&#8217;s pretty if no one can find it.&#8221;  You&#8217;re absolutely right.  I couldn&#8217;t have said it better myself.  As I mentioned before, prior to the redesign/relaunch the site had no rankings for any targeted keyword terms.  None.  Zippo.  Zilch.  Nada.</p><h2>Gleaning Information From Competitors</h2><p>I&#8217;ve obviously been offering my friend a great deal of advice along the way regarding what needs to be done moving forward.  Knowing how bright she is and how likely she is to actually pursue the avenues I advise her to pursue to further improve the site&#8217;s rankings now that they have a strong foundation, I knew she&#8217;d be doing a lot of investigation and poking around on her own.</p><p>She recently sent me an e-mail containing a links to two blog posts that really stuck in my craw.  While the focus of the posts obviously seems to be relative to the advantages of blogging &#8211; though that doesn&#8217;t really come through as the main topic of the articles at all, there were some statements made in those posts that really got under my skin.</p><blockquote><p>&#8220;I am a firm believer that all you need is a website,  a properly hosted blog, and a bit of patience in order to build up a business&#8230;&#8221;</p></blockquote><p>Wow.  I bet the 80+% of small businesses that fail would have appreciated knowing that.  A website, a blog and some patience&#8230;that&#8217;s all there is to it?  Damn.  According to the marketing bible of a former DJ turned <a href="http://www.seoaly.com">SEO</a> who describes himself as someone for whom, &#8220;<em>&#8230;reading and writing have always been the hardest things for me to do ever!</em>&#8220;, EVERYTHING ELSE that successful start-ups do is a waste of time, effort and resources.  Someone should really tell them that concentrating on <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a>, usability, online reputation management, branding, etc. is just unnecessary fluff.  <em>Pfft!  Comprehensive SEO strategy?  I don&#8217;t need no stinkin&#8217; strategy.  I&#8217;m not sure I even know what &#8220;comprehensive&#8221; means&#8230;</em></p><p>Look, that&#8217;s one of the most ignorant oversimplifications I&#8217;ve ever come across.  It&#8217;s like saying all you need to win a Superbowl is an offense, a defense and a properly inflated football.</p><blockquote><p>&#8220;With some minor tweaking to her site, a few off-site optimization techniques, and some <a href="http://www.seoaly.com/">Search Engine Optimization</a> to her website, only a month later, on April 24th, 2009 to be exact, was already indexed by Yahoo, MSN Live and Google.com&#8230;&#8221;</p></blockquote><p>&lt;sarcasm&gt;HOORAY!&lt;/sarcasm&gt;  I&#8217;d like to know what this &#8220;minor tweaking&#8221;, &#8220;a few off-site optimization techniques&#8221; and &#8220;some Search Engine Optimization&#8221; entailed.  First of all&#8230;these &#8220;minor tweaks&#8221; are often not minor at all and are part of an overall strategy.  You can&#8217;t refer to &#8220;minor tweaking&#8221; and &#8220;some Search Engine Optimization to her website&#8221; as separate things.  Well, I guess you can&#8230;but you wouldn&#8217;t, if you know what the hell you were talking about.</p><p>The &#8220;tweaking&#8221; to which he refers is actually called &#8220;on-site SEO&#8221; and it includes making improvements to titles, descriptions, text content, headings, site architecture, text navigation, internal link structure, ALT attributes, image optimization, improvement of page load time, etc.  Dumbing down on-site SEO to nothing more than &#8220;minor tweaking&#8221; is a ridiculous and dangerous oversimplification of on-site SEO that will lead to problems down the road for anyone who accepts such ignorance as fact.</p><h2>SHENANIGANS!</h2><p><img class="alignright" style="border: 0px initial initial;" src="http://farm1.static.flickr.com/198/487367839_0fa84c7cf1_m.jpg" border="0" alt="Not My Hat!" width="173" height="240" /> Here&#8217;s where it really gets to be fun.  It you were to take a look at the tables included in each of those posts, you&#8217;d see that all but a couple of search terms are not disclosed.  Really?  You&#8217;re trying to prove how awesome you are and how easy SEO is by reporting how crappy a site&#8217;s rankings were before your &#8220;minor tweaking&#8221; vs. how the rankings improved a month later.  I call shenanigans.  And by &#8220;shenanigans&#8221;, I mean BULLSHIT.  For all we know you&#8217;ve improved the site&#8217;s ranking for terms that no actual human being would ever use in a keyword search.  Kudos on your transparency.</p><p>While I&#8217;m sure anyone who publishes a supposed case study without actually publishing the terms being targeted would say it had something to do with confidentiality, again&#8230;bullshit.  If you can&#8217;t publish the terms, don&#8217;t publish the post as a supposed case study.  Not doing so makes the individual rankings and ranking improvements utterly meaningless because there is no way to compare the ranking improvement on a term by term basis.  What appears as &#8220;Hidden Wedding Marketing Keyword&#8221; in row 3 of the first table may not be the same target term that appears as &#8220;Wedding Marketing Keyword&#8221; in row 3 of the table in the follow-up post.</p><p>For example, if you compare the original ranking report (before any optimization was done) to the &#8220;month after&#8221; ranking report, the &#8220;Hidden Wedding Marketing Keyword&#8221; that appears in row 12 ranks in position 83 on the original report, yet the &#8220;Hidden Wedding Marketing Keyword&#8221; in row 12 of the follow-up report shows the site is &#8220;Not Ranked&#8221;.  So a month after the &#8220;minor tweaking&#8221; was done the site actually went from being ranked in the 83rd position for an unknown keyword to not ranked at all.  Hmm&#8230;curious.</p><h2>Since the Redesign/Relaunch</h2><p>The new site launched on July 7th, 2010.  Initially I focused my attention on creating optimized, keyword targeted text content for a handful of the target terms within her niche that generate the greatest search volume.  While there are 25-30 terms we want the site to rank well for moving forward, my main concern at the outset was to improve the site&#8217;s ranking for the following terms:</p><ul><li>[wedding planners houston] &#8211; about 320 searches per month</li><li>[wedding planner houston] - about 320 searches per month</li><li>[houston wedding planners] - about 260 searches per month</li><li>[houston wedding planner] - about 260 searches per month</li><li>[wedding planners in houston] - about 210 searches per month</li><li>[wedding coordinator houston] - about 170 searches per month</li><li>[wedding planning houston] - about 110 searches per month</li></ul><p>And let&#8217;s not forget that the site wasn&#8217;t ranked AT ALL for any search term aside from the actual business name.  In the spirit of transparency, here are the ranking results for the site just 9 days after the relaunch (July 16):<br /><table id="wp-table-reloaded-id-1-no-1" class="wp-table-reloaded wp-table-reloaded-id-1"><thead><tr class="row-1 odd"><th class="column-1">Keyword</th><th class="column-2">Google.com position</th><th class="column-3">Yahoo (United States) position</th><th class="column-4">Bing position</th></tr></thead><tbody><tr class="row-2 even"><td class="column-1">wedding planners houston</td><td class="column-2">31</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-3 odd"><td class="column-1">wedding planner houston</td><td class="column-2">32</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-4 even"><td class="column-1">houston wedding planners</td><td class="column-2">44</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-5 odd"><td class="column-1">houston wedding planner</td><td class="column-2">49</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-6 even"><td class="column-1">event planning houston</td><td class="column-2">153</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-7 odd"><td class="column-1">wedding planners in houston</td><td class="column-2">38</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-8 even"><td class="column-1">event planners houston</td><td class="column-2">117</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-9 odd"><td class="column-1">event planner houston</td><td class="column-2">127</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-10 even"><td class="column-1">wedding coordinator houston</td><td class="column-2">26</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-11 odd"><td class="column-1">houston party planners</td><td class="column-2">198</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-12 even"><td class="column-1">party planning houston</td><td class="column-2">59</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-13 odd"><td class="column-1">party planners houston</td><td class="column-2">62</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-14 even"><td class="column-1">event planners in houston</td><td class="column-2">198</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-15 odd"><td class="column-1">wedding planning houston</td><td class="column-2">31</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-16 even"><td class="column-1">party planner houston</td><td class="column-2">64</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-17 odd"><td class="column-1">wedding planner in houston</td><td class="column-2">42</td><td class="column-3">10</td><td class="column-4">-</td></tr><tr class="row-18 even"><td class="column-1">houston wedding planning</td><td class="column-2">37</td><td class="column-3">18</td><td class="column-4">-</td></tr><tr class="row-19 odd"><td class="column-1">houston party planning</td><td class="column-2">182</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-20 even"><td class="column-1">party planning in houston</td><td class="column-2">175</td><td class="column-3">132</td><td class="column-4">-</td></tr><tr class="row-21 odd"><td class="column-1">houston wedding coordinators</td><td class="column-2">52</td><td class="column-3">-</td><td class="column-4">-</td></tr></tbody></table></p><p>About 6 weeks after the relaunch (August 15), the site was ranked as follows:<br /><table id="wp-table-reloaded-id-3-no-1" class="wp-table-reloaded wp-table-reloaded-id-3"><thead><tr class="row-1 odd"><th class="column-1">Keyword</th><th class="column-2">Google.com position</th><th class="column-3">Yahoo (United States) position</th><th class="column-4">Bing position</th></tr></thead><tbody><tr class="row-2 even"><td class="column-1">houston event planning</td><td class="column-2">-</td><td class="column-3">153</td><td class="column-4">-</td></tr><tr class="row-3 odd"><td class="column-1">wedding planners houston</td><td class="column-2">27</td><td class="column-3">17</td><td class="column-4">66</td></tr><tr class="row-4 even"><td class="column-1">wedding planner houston</td><td class="column-2">24</td><td class="column-3">22</td><td class="column-4">48</td></tr><tr class="row-5 odd"><td class="column-1">houston wedding planners</td><td class="column-2">27</td><td class="column-3">33</td><td class="column-4">120</td></tr><tr class="row-6 even"><td class="column-1">houston wedding planner</td><td class="column-2">39</td><td class="column-3">34</td><td class="column-4">105</td></tr><tr class="row-7 odd"><td class="column-1">event planning houston</td><td class="column-2">90</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-8 even"><td class="column-1">wedding planners in houston</td><td class="column-2">33</td><td class="column-3">15</td><td class="column-4">81</td></tr><tr class="row-9 odd"><td class="column-1">event planners houston</td><td class="column-2">83</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-10 even"><td class="column-1">event planner houston</td><td class="column-2">84</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-11 odd"><td class="column-1">wedding coordinator houston</td><td class="column-2">15</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-12 even"><td class="column-1">houston party planners</td><td class="column-2">78</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-13 odd"><td class="column-1">party planning houston</td><td class="column-2">54</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-14 even"><td class="column-1">party planners houston</td><td class="column-2">52</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-15 odd"><td class="column-1">event planners in houston</td><td class="column-2">95</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-16 even"><td class="column-1">event planner in houston</td><td class="column-2">101</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-17 odd"><td class="column-1">wedding planning houston</td><td class="column-2">33</td><td class="column-3">15</td><td class="column-4">33</td></tr><tr class="row-18 even"><td class="column-1">party planner houston</td><td class="column-2">53</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-19 odd"><td class="column-1">event planning in houston</td><td class="column-2">140</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-20 even"><td class="column-1">wedding planner in houston</td><td class="column-2">34</td><td class="column-3">15</td><td class="column-4">48</td></tr><tr class="row-21 odd"><td class="column-1">party planner in houston</td><td class="column-2">144</td><td class="column-3">-</td><td class="column-4">-</td></tr><tr class="row-22 even"><td class="column-1">houston wedding planning</td><td class="column-2">37</td><td class="column-3">24</td><td class="column-4">67</td></tr><tr class="row-23 odd"><td class="column-1">houston party planning</td><td class="column-2">136</td><td class="column-3">85</td><td class="column-4">-</td></tr><tr class="row-24 even"><td class="column-1">party planning in houston</td><td class="column-2">85</td><td class="column-3">105</td><td class="column-4">-</td></tr><tr class="row-25 odd"><td class="column-1">party planners in houston</td><td class="column-2">126</td><td class="column-3">-</td><td class="column-4">-</td></tr></tbody></table></p><p>Keep in mind I changed everything from the platform the site was built on to where it was hosted to the URL structure of the pages.  Literally everything that could be changed was changed.  And those results are based on absolutely no off-site effort on my part whatsoever &#8211; these results are based solely on the proper implementation of a comprehensive on-site SEO strategy.</p><h3>A Half-assed Approach vs. A Complete Strategy</h3><p><img class="alignleft" style="border: 0px initial initial;" src="http://farm2.static.flickr.com/1102/1217966857_e633c5103b_m.jpg" border="0" alt="Robert Crumb explains how there's no hope via flow chart" width="188" height="240" />The ranking results being reported for the phantom keywords in parts 1 &amp; 2 of the aforementioned case study were comparisons over a 6 month period&#8230;6 MONTHS &#8211; from March to August.</p><p>Basically what was accomplished with &#8220;minor tweaking&#8221;, &#8220;a few off-site optimization techniques&#8221; and &#8220;some Search Engine Optimization&#8221; in that case study over a period of 6 months, I accomplished with on-site SEO alone in 6 weeks.  THAT is the difference between the results from a &#8220;see&#8230;it&#8217;s SO easy&#8221; novice and an experienced SEO who actually understands the big picture.  SEO is much more than a laundry list of tasks that can be carried out by any trained monkey with a keyboard.  It is a little bit of art combined with a touch of science.  It takes experience.  It involves understanding not only the individual ranking factors, but how those factors work together and how their cumulative impact affects a site&#8217;s ranking.</p><p>This statement is particularly nonsensical and misleading:</p><blockquote><p>I started to believe what other people were saying. I was believing Ignorant people that stated that the only way to rank high for Google was to pay someone to do it for you… Can you believe that? That’s the most absurd thing I had ever heard… first thing is how would you pay someone and second is why would Google do that? It made no sense to me at the time and it makes no sense to me now.</p></blockquote><p>Why it DOES make sense:  the ability to achieve better results based on the on-site SEO efforts alone in 6 weeks.  While hiring a professional may not make sense to him, it does make sense to real small business owners.  Measurable results in 6 weeks.  Not 6 months.</p><p>A comprehensive strategy is essential to the long term success of any small business website.  Ranking well is only part of the equation.  Conversions are really where the rubber meets the road.  In a niche with little competition it may be possible to rank well for some target terms without incorporating every aspect of on-site SEO, but why wouldn&#8217;t you do it anyway?</p><p>The ranking factors are not created by search engines without rhyme or reason.  Well-written text content serves to inform site visitors.  Proper site architecture makes the site easy to navigate.  ALT attributes make it easier for the visually impaired to browse a site thanks to the use of software like <a href="http://en.wikipedia.org/wiki/JAWS_(screen_reader)" target="_blank">JAWS</a>.  Internal links help visitors find the information they need more easily.  Optimized images help pages load faster.  Faster load times get users where they want to go faster.</p><p>Virtually everything the search engines incorporate into their algorithms as a ranking factor is specifically intended to improve the user experience.  Search engines want to lead people to the websites that offer the best user experience.  And you should want your website to offer the best user experience.  Whether a site ranks in the #1 position or the #300 position, if it isn&#8217;t user friendly, doesn&#8217;t convey the right message and isn&#8217;t visually appealing people will go elsewhere.  A complete SEO strategy takes into consideration how A will impact B, how B will impact C and how A+B+C will cumulatively impact both ranking and user experience.</p><p>This is why the SEO industry suffers from such massive reputation problems.  A little bit of information in the wrong hands can be a dangerous thing.  Ignorance has its own unique opportunity cost.  Egregious oversimplifications hurt everyone.</p><h6><small><a title="Attribution-ShareAlike License" href="http://creativecommons.org/licenses/by-sa/2.0/" target="_blank"></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="MrB-MMX" href="http://www.flickr.com/photos/48867930@N08/4806043442/" target="_blank">MrB-MMX</a></small>, <small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="cogdogblog" href="http://www.flickr.com/photos/37996646802@N01/487367839/" target="_blank">cogdogblog</a></small> and <small><a title="Attribution License" href="http://creativecommons.org/licenses/by/2.0/" target="_blank"></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="Aaron_M" href="http://www.flickr.com/photos/95813831@N00/1217966857/" target="_blank">Aaron_M</a></small></h6><div class="shr-publisher-1435"></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fthe-dangers-of-oversimplifying-niche-seo%2F' data-shr_title='The+Dangers+of+Oversimplifying+Niche+SEO'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fthe-dangers-of-oversimplifying-niche-seo%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fthe-dangers-of-oversimplifying-niche-seo%2F' data-shr_title='The+Dangers+of+Oversimplifying+Niche+SEO'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><p>No related posts.</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/the-dangers-of-oversimplifying-niche-seo/">The Dangers of Oversimplifying Niche SEO</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p>]]></content:encoded> <wfw:commentRss>http://www.seoaly.com/the-dangers-of-oversimplifying-niche-seo/feed/</wfw:commentRss> <slash:comments>32</slash:comments> </item> <item><title>Choosing The Website Audit That Is Best For YOUR Needs</title><link>http://www.seoaly.com/website-audit-for-your-needs/</link> <comments>http://www.seoaly.com/website-audit-for-your-needs/#comments</comments> <pubDate>Tue, 07 Jul 2009 13:02:35 +0000</pubDate> <dc:creator>Alysson</dc:creator> <category><![CDATA[On-Site SEO]]></category> <category><![CDATA[Organic SEO]]></category> <category><![CDATA[seo audit]]></category> <category><![CDATA[seo audits]]></category> <category><![CDATA[website audit]]></category><guid isPermaLink="false">http://www.seoaly.com/?p=873</guid> <description><![CDATA[<p>A website audit is an essential first step toward identifying the issues that may be causing your site to perform poorly in the organic results of search engines like Google, Yahoo! and Bing. You can&#8217;t know where you&#8217;re going until you know where you are. But before deciding who will conduct the website audit you [...]</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/website-audit-for-your-needs/">Choosing The Website Audit That Is Best For YOUR Needs</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p> No related posts.]]></description> <content:encoded><![CDATA[<p>A website audit is an essential first step toward identifying the issues that may be causing your site to perform poorly in the organic results of search engines like Google, Yahoo! and Bing.  You can&#8217;t know where you&#8217;re going until you know where you are.  But before deciding who will conduct the website audit you should determine what your plans are for resolving whatever problems may be uncovered.</p><p>The information contained within many a website <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> is a confusing mix of technical jargon and a laundry list of problems with very little information that you, as the small business owner, can take action on.  If the audit states the site is suffering from <a href="http://www.seoaly.com/canonical-url-issues-and-link-equity/" target="_blank">canonical URL issues</a>, poor internal link structure, <a href="http://www.seoaly.com/duplicate-content-did-google-do-a-180/" target="_blank">duplicate content problems</a>, keyword cannibalization, etc., what does all of that mean to you?  If you&#8217;re like most small business owners, it may as well be written in Chinese.  Many SEOs create these audits specifically to result in your hiring them to resolve the issues for you.  There is absolutely nothing wrong with this practice, but it&#8217;s important that you understand that to be the case.<span id="more-873"></span></p><p>Let&#8217;s face it&#8230;not all small business owners are in a position to pay thousands of dollars to optimize their websites.  Does that mean they should abandon all hope, throw their hands up in frustration and resign themselves to perpetually poor performance in the organic search results?  Absolutely not.  What it DOES mean is that where to spend marketing dollars and what to invest in <a href="http://www.seoaly.com">SEO</a> efforts is essential.  If you&#8217;re among most small business owners, you don&#8217;t have a lot of free time, but you have more time to spend these days than money.  For you, choosing the right SEO audit &#8211; one that will provide you with more than just a laundry list of problems &#8211; is very important.</p><h2>What Will You Do After The SEO Audit &#8211; Have A Basic Plan</h2><p>Have you stopped to think about what you intend to do with the information contained within the SEO audit?  If you haven&#8217;t, don&#8217;t have an audit done &#8211; yet.  There is a LOT more to consider when deciding who to hire to do your audit than price.  Audits can range in price from a few hundred dollars to several thousand dollars.  Before investing a dime of your small business marketing budget on a website audit, you need to have some idea what you intend to do with what you learn from it.  If you spend $2,000 on an audit, how much of your budget will then be left to put toward actually fixing the site&#8217;s problems?  If your answer is, &#8220;nothing&#8221;, you need to find a more affordable <a href="http://www.seoaly.com/seo-audit/" target="_blank">SEO audit</a>.</p><p>Is your plan to hire the company that conducted the audit to resolve the issues?  Do you intend to have the site&#8217;s original designer address the issues?  Are you going to fix the problems yourself?  Your goals, what you hope to learn and your future plans for resolving problems once they are identified are all important things to take into consideration BEFORE deciding who will audit your site.  Not taking these things into consideration can cost you a LOT of time and money.  The only thing worse than avoiding SEO audits is choosing the wrong one.  If the audit doesn&#8217;t ultimately result in the necessary changes being made, it&#8217;s a complete waste of money.</p><h3>Resolving On-Site SEO Issues &#8211; Understanding Your Options</h3><p>You don&#8217;t HAVE to hire SEOs or SEO companies to improve your site&#8217;s organic SEO performance.  If you have the flexibility within your marketing budget to contract a reputable SEO or hire an SEO professional to handle optimization for you in-house, that&#8217;s fantastic &#8211; and is obviously the optimal solution.  I suggest you stop wasting your time reading this and do so immediately.  That isn&#8217;t, however, a realistic option for many small business owners facing today&#8217;s economic challenges and shrinking marketing budgets.</p><p>The truth is that there are many on-site SEO tasks that can be tackled by designers, developers, or even by YOU &#8211; the small business website owner.  While there are numerous things to consider in a comprehensive optimization effort, resolving basic on-site SEO issues is a huge step in the right direction toward improving your site&#8217;s search engine friendliness and organic SEO performance.  That said, <a href="http://www.seoaly.com/real-trouble-with-search-engine-optimization/" target="_blank">HUGE mistakes</a> can be made if you or your designer aren&#8217;t careful or aren&#8217;t provided with the right information.</p><p>Let&#8217;s be clear:  if you&#8217;re going to rely on whomever designed the site initially to resolve the issues, you should assume they know little to nothing about SEO.  Why?  If they knew much about building a search engine friendly site, they likely would have done so from the get-go and the site wouldn&#8217;t suffer from basic issues like unoptimized titles, poor META tag relevancy, lack of text navigation, etc.</p><p>That said, if you intend to rely on your designer or developer to resolve the issues, be prepared to tell them exactly what the issues are and provide them with information about how to go about fixing it.  Many designers and developers claim to understand SEO, but more often than not this simply isn&#8217;t true.  In this case, the usual &#8220;laundry list&#8221; SEO audits won&#8217;t cut the mustard.</p><p>Knowing the site doesn&#8217;t have an adequate internal link structure won&#8217;t be enough for the typical designer or developer to know what to do next.  Telling them to fix the keyword cannibalization issues won&#8217;t be enough to ensure that it actually gets done.  And if YOU don&#8217;t have a basic understanding of what <a href="http://www.seomoz.org/blog/how-to-solve-keyword-cannibalization" target="_blank">keyword cannibalization</a> is, you won&#8217;t know where to begin to check to see if the issues have been taken care of.</p><p>Not only will they (or you) need to be told what&#8217;s wrong, but &#8211; more importantly &#8211; what is involved in resolving those issues, some of which may be specific to an individual page and some of which may be site-wide issues that will need to be fixed on every page throughout the site.  Unless the SEO audit helps create an understanding of not only what must be changed, but how and why it is important, someone who doesn&#8217;t already understand SEO will find it useless.</p><h4>Website Audits Are A First Step &#8211; Not &#8220;THE&#8221; Solution</h4><p>Think of a website audit as a diagnosis, not a solution to your website&#8217;s problems.  Just like fatigue, fainting or a fever are indications to your doctor that something is amiss with your health, a site that performs poorly in an organic search is merely a symptom of the website&#8217;s underlying problems.  An audit is a diagnostic tool.  The treatment program, i.e. the overall SEO strategy, begins to take shape once the specific problems have been identified.</p><p>The right audit will help you better understand what aspects of the strategy you can carry out yourself and what is best tackled only by an SEO professional.  Choosing the right <a href="http://www.seoaly.com/seo-audit/">SEO Audit</a> &#8211; like choosing the right doctor &#8211; is an important first step toward reaching your goals.  The most important thing to understand about any SEO effort is that it cannot be approached as a simple, one-time &#8220;project&#8221;.  Successful SEO is an ongoing process.  Websites that perform well in the organic search results are constantly monitored and changes continue to be made on an ongoing basis in order to maintain consistent, long-term success.</p><div class="shr-publisher-873"></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fwebsite-audit-for-your-needs%2F' data-shr_title='Choosing+The+Website+Audit+That+Is+Best+For+YOUR+Needs'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fwebsite-audit-for-your-needs%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fwebsite-audit-for-your-needs%2F' data-shr_title='Choosing+The+Website+Audit+That+Is+Best+For+YOUR+Needs'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><p>No related posts.</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/website-audit-for-your-needs/">Choosing The Website Audit That Is Best For YOUR Needs</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p>]]></content:encoded> <wfw:commentRss>http://www.seoaly.com/website-audit-for-your-needs/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Canonical URL Issues and Link Equity</title><link>http://www.seoaly.com/canonical-url-issues-and-link-equity/</link> <comments>http://www.seoaly.com/canonical-url-issues-and-link-equity/#comments</comments> <pubDate>Thu, 05 Feb 2009 01:27:34 +0000</pubDate> <dc:creator>Alysson</dc:creator> <category><![CDATA[On-Site SEO]]></category> <category><![CDATA[Organic SEO]]></category> <category><![CDATA[canonical URL issues]]></category> <category><![CDATA[duplicate content]]></category> <category><![CDATA[link equity]]></category><guid isPermaLink="false">http://www.seoaly.com/?p=707</guid> <description><![CDATA[<p>I&#8217;ve assessed hundreds &#8211; probably thousands &#8211; of small business websites over the past few years. Canonical URL issues seem to be a common problem for many of them, regardless of whether the site was built by a design firm or a do-it-yourself business owner. For those who aren&#8217;t familiar with canonical URL issues, also [...]</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/canonical-url-issues-and-link-equity/">Canonical URL Issues and Link Equity</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p> Related posts:<ol><li><a href='http://www.seoaly.com/w3-total-cache-canonical-url-issues/' rel='bookmark' title='w3 Total Cache &amp; Canonical URL Issues'>w3 Total Cache &#038; Canonical URL Issues</a></li></ol>]]></description> <content:encoded><![CDATA[<p>I&#8217;ve assessed hundreds &#8211; probably thousands &#8211; of small business websites over the past few years. <strong>Canonical URL issues</strong> seem to be a common problem for many of them, regardless of whether the site was built by a design firm or a do-it-yourself business owner.</p><p>For those who aren&#8217;t familiar with <strong>canonical URL issues</strong>, also referred to as url canonicalization (and sometimes &#8220;canonical home page issues&#8221; &#8211; which is technically incorrect as it does not just apply to the home page), put simply it is having the same page show up on multiple URLs inadvertently &#8211; not to be confused with purposely having multiple pages that contain the same text content.</p><p>If, for instance, your home page is accessible at both www.domain.com and domain.com, your site is suffering from <strong>canonical URL issues</strong>.  In the worst case scenario, some pages are accessible at up to 6 or 7 different URLs&#8230;or more.<span id="more-707"></span></p><h2>What URLs Are Being Linked To</h2><p>While the duplicate content created by <strong>canonical URL issues</strong> may or may not have a negative impact on ranking, one thing is certain:  it DOES have an impact on the link equity of the page.  What does that mean?  Well, in short, if the same page can be accessed using two, three, four or more URLs, it means each of those URLs could be bookmarked or shared on a variety of social media outlets or linked to by other websites.</p><p>Let&#8217;s say that 100 sites link to your home page, but your home page is accessible at www.domain.com, domain.com, www.domain.com/index.html and domain.com/index.html &#8211; all of which contain the same useful, and clearly popular content, based on 100 sites linking to it.  Now, let&#8217;s say that 25 of those sites link to the URL www.domain.com, 25 others link to domain.com, another 25 to www.domain.com/index.html, and the last 25 to domain.com/index.html.</p><p>All of the links ultimately serve up the same content, so it doesn&#8217;t make any difference&#8230;right?  WRONG!  Instead of the home page being given credit for having 100 links, those four separate URLs are considered individual pages by the search engines and each is given credit for having only 25 links &#8211; even though the links ultimately lead a user to the same content.  DOH!  In a world controlled by Google and PageRank, the number of external links pointing to an individual URL can have an enormous impact on ranking.</p><h3>What About Duplicate Content?</h3><p>While some were put at ease by Google&#8217;s post back in September, entitled &#8220;<a href="http://googlewebmastercentral.blogspot.com/2008/09/demystifying-duplicate-content-penalty.html" target="_blank">Demystifying the Duplicate Content Penalty</a>&#8220;, some in the search marketing industry still remain convinced that duplicate content issues can hurt a page&#8217;s ranking in the search results &#8211; myself included.  I, and many of my search marketing colleagues, have enough experience to understand that leaving Google to figure things out for themselves and determining which URL should be the preferred URL in the search results is like playing Russian roulette &#8211; a point that I elaborated on in a previous post, &#8220;<a href="http://www.seoaly.com/duplicate-content-did-google-do-a-180/" target="_blank">Duplicate Content &#8211; Did Google Do A 180?</a>&#8220;.</p><h4>The Solution:  A 301 Redirect</h4><p>Creating a 301 redirect is somewhat technical and involves making changes to the .htaccess file in the root directory of your domain, so most small business owners aren&#8217;t comfortable creating or modifying the file themselves.  This is generally something that is best undertaken by an IT professional.  That said, here is the redirect code that should be placed within the .htaccess file on (provided your server is running Apache with mod_rewrite enabled):</p><p><img src="http://www.seoaly.com/images/301redirect.jpg" alt="301 Redirect Code" /></p><p><em><strong>NOTE:</strong> this is the 301 rewrite code for a server running Apache &#8211; if your server is not running Apache, the redirect code is likely different from what is included above.  This is yet another reason that creating a 301 redirect by modifying the .htaccess file is often tackled by an IT professional.</em></p><p>A 301 redirect points the browser to a single, preferred URL &#8211; the typical choice is www.domain.com.  That means that if someone were to follow a link that pointed to domain.com, www.domain.com/index.html, or domain.com/index.html it will be redirected to www.domain.com automatically.</p><p>The biggest advantage to creating a 301 redirect is that existing links to any of the variations of that URL will continue to pass &#8220;link juice&#8221; &#8211; meaning you don&#8217;t have to inform the sites that may have linked to one of the newly redirected URLs of the change and there is no risk of losing the link juice being passed by those links.</p><p>Referring back to the previous example, adding a 301 redirect for domain.com, www.domain.com/index.html and domain.com/index.html will result in links to those URLs being recognized as links to www.domain.com, so www.domain.com will receive credit for all 100 links, rather than 25 links being attributed to each of four individual URLs.  Problem solved!</p><div class="shr-publisher-707"></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fcanonical-url-issues-and-link-equity%2F' data-shr_title='Canonical+URL+Issues+and+Link+Equity'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fcanonical-url-issues-and-link-equity%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fcanonical-url-issues-and-link-equity%2F' data-shr_title='Canonical+URL+Issues+and+Link+Equity'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><p>Related posts:<ol><li><a href='http://www.seoaly.com/w3-total-cache-canonical-url-issues/' rel='bookmark' title='w3 Total Cache &amp; Canonical URL Issues'>w3 Total Cache &#038; Canonical URL Issues</a></li></ol></p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/canonical-url-issues-and-link-equity/">Canonical URL Issues and Link Equity</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p>]]></content:encoded> <wfw:commentRss>http://www.seoaly.com/canonical-url-issues-and-link-equity/feed/</wfw:commentRss> <slash:comments>16</slash:comments> </item> <item><title>Duplicate Content &#8211; Did Google Do A 180?</title><link>http://www.seoaly.com/duplicate-content-did-google-do-a-180/</link> <comments>http://www.seoaly.com/duplicate-content-did-google-do-a-180/#comments</comments> <pubDate>Thu, 25 Sep 2008 19:39:53 +0000</pubDate> <dc:creator>Alysson</dc:creator> <category><![CDATA[On-Site SEO]]></category> <category><![CDATA[Organic SEO]]></category> <category><![CDATA[duplicate content]]></category> <category><![CDATA[google duplicate content penalty]]></category><guid isPermaLink="false">http://www.seoaly.com/?p=350</guid> <description><![CDATA[<p>A lot has been made of the recent post at Google&#8217;s Webmaster Central Blog regarding duplicate content.  The post, entitled Demystifying the &#8220;Duplicate Content Penalty&#8221;, basically calls into question the idea that a site can be &#8220;penalized&#8221; for having significantly similar content to another site and places the blame on webmasters and SEOs for perpetuating [...]</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/duplicate-content-did-google-do-a-180/">Duplicate Content &#8211; Did Google Do A 180?</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p> Related posts:<ol><li><a href='http://www.seoaly.com/canonical-url-issues-and-link-equity/' rel='bookmark' title='Canonical URL Issues and Link Equity'>Canonical URL Issues and Link Equity</a></li></ol>]]></description> <content:encoded><![CDATA[<p>A lot has been made of the recent post at Google&#8217;s Webmaster Central Blog regarding duplicate content.  The post, entitled <a title="Demystifying the &quot;Duplicate Content Penalty&quot;" href="http://googlewebmastercentral.blogspot.com/2008/09/demystifying-duplicate-content-penalty.html" target="_blank">Demystifying the &#8220;Duplicate Content Penalty&#8221;</a>, basically calls into question the idea that a site can be &#8220;penalized&#8221; for having significantly similar content to another site and places the blame on webmasters and SEOs for perpetuating &#8220;myth of duplicate content&#8221;.  <span id="more-350"></span>Whether you refer to it as a &#8220;penalty&#8221; or simply &#8220;filter&#8221; the results, the outcome is ultimately the same &#8211; one URL will be considered the &#8220;preferred&#8221; URL by Google and THAT will be the URL that is included within SERPs.  The real question then becomes how to help Google identify your site as &#8220;preferred&#8221;.</p><p>Calling it a &#8220;penalty&#8221; vs. a &#8220;filter&#8221; is nothing more than semantics.  Stating that there is no such thing as a &#8220;duplicate content penalty&#8221; is Google&#8217;s feeble attempt to make it seem as though they aren&#8217;t unfairly penalizing individual URLs in their self-appointed role policing the Internet.  The fact of the matter is that it doesn&#8217;t matter whether a page suffers from an actual &#8220;penalty&#8221; or not.  If it is &#8220;filtered out&#8221; of the results for having content that is too similar to another page already listed in the index, does it really matter if it&#8217;s technically referred to as a &#8220;penalty&#8221; or a &#8220;filter&#8221;?  The ultimate result is the same &#8211; people will be able to more easily find one page than another.  Period.</p><p>I completely understand Google&#8217;s goal in eliminating duplicate content from their search results.  Imagine what SERPs would look like, taking into consideration the number of cookie-cutter, affiliate websites in existence today, if duplicate content weren&#8217;t factored into a site&#8217;s ranking?  Part of any search engine&#8217;s goal, Google included, is to provide its users with relevant and unique information.  If searching for the term &#8220;weight loss supplements&#8221; resulted 100 identical Herbalife sites, each with a different URL and the exact same information, how reliable would you believe those results to be?  There is a reason duplicate content is frowned upon&#8230;and it should be.</p><p>It appears that Google, at least in this latest official post, is referring specifically to inadvertent and non-malicious duplicate content within a given site.  I have suspected for some time that this sort of duplicate content has a low level of impact on a site&#8217;s ranking.  Think, for example, about the number of WordPress sites that rank highly for competitive search terms.  Many of those sites contain sidebars that are identical on every page.  If that sort of duplicate content were penalized&#8230;or, uh&#8230;excuse me, if that sort of duplicate content were to trigger Google&#8217;s &#8220;filters&#8221;, that would likely have a negative impact on the ranking of each page.  That hasn&#8217;t been my experience.</p><p>What about duplicate content from other sites (i.e. scraped content)?  How does Google determine whether or not a site that scrapes content is malicious?  In my opinion, stealing my intellectual property and regurgitating it on your own site as if you created it IS malicious under any circumstances and should be penalized accordingly.  Google apparently doesn&#8217;t agree, as illustrated by a number of documented experiences with scraper sites outranking the original source due in large part to having a higher PR than the site where the information was originally published.</p><p>Google doesn&#8217;t do as good a job at this as they&#8217;d like to believe.  Many a webmaster, <a href="http://www.seoaly.com">SEO</a> and search marketing guru has weighed in on the issue and the consensus, at least from what I&#8217;ve read, is pretty clear:  duplicate content, regardless of its source, can have a negative impact on ranking and DON&#8217;T LET GOOGLE FIGURE STUFF OUT ON THEIR OWN!  These posts seem to reiterate that it is important to put forth a modicum of effort to address what is within your control when it comes to the issue of duplicate content within your own site:</p><p><a href="http://searchengineland.com/080915-121927.php" target="_blank">http://searchengineland.com/080915-121927.php</a><br /> <a href="http://www.searchenginejournal.com/google-pagerank-play-doh/5504/" target="_blank">http://www.searchenginejournal.com/google-pagerank-play-doh/5504/</a><br /> <a href="http://www.mattcutts.com/blog/seo-advice-url-canonicalization/" target="_blank">http://www.mattcutts.com/blog/seo-advice-url-canonicalization/</a><br /> <a href="http://www.sugarrae.com/be-a-normalizer-a-c14n-exterminator/" target="_blank">http://www.sugarrae.com/be-a-normalizer-a-c14n-exterminator/</a><br /> <a href="http://janeandrobot.com/post/canonical-url-canonicalization-domain.aspx" target="_blank">http://janeandrobot.com/post/canonical-url-canonicalization-domain.aspx</a><br /> <a href="http://www.mattcutts.com/blog/canonicalization-update/" target="_blank">http://www.mattcutts.com/blog/canonicalization-update/</a></p><p>I mean, seriously &#8211; are all of these experts full of crap?  Matt Cutts included?  I&#8217;d venture to say that they&#8217;re not&#8230;and preventing duplicate content issues from occuring in the first place is likely the best option for anyone concerned about driving traffic to a site via Google&#8217;s organic search results.  As for duplicate content from another site&#8230;I think we all know there is little, if anything, that can truly be done about that and we have no choice but to leave it to Google to sort out those issues on their own.</p><p>Google likes to toot their own horn and proclaim that they&#8217;ve &#8220;got it covered&#8221;, but the fact of the matter is that the more you leave to Google&#8217;s bots to &#8220;figure out&#8221; the more time must be spent doing so&#8230;meaning greater resources and server load.  Why?  Why not just make things as clean and simple as possible?  Does this recent clarification by Google mean that we should no longer concern ourselves with resolving a site&#8217;s canonical homepage issues?  Does it mean that it&#8217;s no longer necessary to restrict bot access to printer friendly versions of pages?  Does it mean that multiple URLs resolving with the same content will be ignored, but have no negative impact on the ranking of the preferred URL?  No&#8230;I don&#8217;t think their claim to have a handle on duplicate content issues means any of that.</p><p>What it does mean is that Google is, as always, making every effort to improve the experience for its users &#8211; with or without consideration for the impact to webmasters.  They will likely always error on the side of caution when it comes to preventing SPAM and other malicious activity within search results.  To a certain extent, that is for the good of all&#8230;provided that Google recognizes the disconnect between what they claim to be true vs. the real-world experiences of many SEOs in dealing with duplicate content issues to this point.</p><p>If duplicate content wasn&#8217;t factored into ranking, the SERPs would be dominated by a large number of identical affiliate sites and little else in some queries.  &#8220;Penalty&#8221; or not, there is a definitive reason that a search for &#8220;Herbalife&#8221; doesn&#8217;t result in finding Herbalife&#8217;s thousands of identical, cookie-cutter affiliate websites&#8230;and I believe at least part of that reason to be duplicate content.  Don&#8217;t piss on my leg and then tell me it&#8217;s raining, Google!  Give me a break!</p><p>See what others within the industry are saying on this issue at <a href="http://www.seroundtable.com/archives/018245.html" target="_self">Search Engine Roundtable</a> and <a href="http://sphinn.com/story/72299" target="_blank">Sphinn</a>.</p><div class="shr-publisher-350"></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fduplicate-content-did-google-do-a-180%2F' data-shr_title='Duplicate+Content+-+Did+Google+Do+A+180%3F'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fduplicate-content-did-google-do-a-180%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fduplicate-content-did-google-do-a-180%2F' data-shr_title='Duplicate+Content+-+Did+Google+Do+A+180%3F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><p>Related posts:<ol><li><a href='http://www.seoaly.com/canonical-url-issues-and-link-equity/' rel='bookmark' title='Canonical URL Issues and Link Equity'>Canonical URL Issues and Link Equity</a></li></ol></p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/duplicate-content-did-google-do-a-180/">Duplicate Content &#8211; Did Google Do A 180?</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p>]]></content:encoded> <wfw:commentRss>http://www.seoaly.com/duplicate-content-did-google-do-a-180/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>The Jury Is Still Out On Headings&#8230;</title><link>http://www.seoaly.com/the-jury-is-still-out-on-headings/</link> <comments>http://www.seoaly.com/the-jury-is-still-out-on-headings/#comments</comments> <pubDate>Wed, 24 Sep 2008 23:58:51 +0000</pubDate> <dc:creator>Alysson</dc:creator> <category><![CDATA[On-Site SEO]]></category> <category><![CDATA[Organic SEO]]></category> <category><![CDATA[headings]]></category><guid isPermaLink="false">http://www.seoaly.com/?p=346</guid> <description><![CDATA[<p>Back on August 1st I wrote a &#8220;just wondering&#8230;&#8221; post regarding the importance of headings as they relate to on-site SEO efforts today &#8211; specifically H1, H2 and H3.  I didn&#8217;t get much expert feedback, so I&#8217;ve decided to implement some real-world testing on an established domain to see if headings have an impact on [...]</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/the-jury-is-still-out-on-headings/">The Jury Is Still Out On Headings&#8230;</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p> Related posts:<ol><li><a href='http://www.seoaly.com/are-heading-tags-important/' rel='bookmark' title='How Important Are Headings These Days?'>How Important Are Headings These Days?</a></li></ol>]]></description> <content:encoded><![CDATA[<p>Back on August 1st I wrote a &#8220;just wondering&#8230;&#8221; post regarding the importance of headings as they relate to on-site <a href="http://www.seoaly.com">SEO</a> efforts today &#8211; specifically H1, H2 and H3.  I didn&#8217;t get much expert feedback, so I&#8217;ve decided to implement some real-world testing on an established domain to see if headings have an impact on the ranking of that site&#8217;s home page.<span id="more-346"></span></p><p>I officially started this test on 09/24, using <a href="http://tools.seobook.com/firefox/rank-checker/" target="_blank">Rank Checker</a> to run an initial analysis.  Check out the results, should you so desire.  At the time the report was run, the site had one &lt;h1&gt; located within the header.  All other paragraph headings were &lt;h6&gt; and that had been the case for several weeks prior to beginning the &#8220;test&#8221;.</p><p>After running Rank Checker, I adjusted the headings on the site&#8217;s home page to include the &lt;h1&gt; in the header (unchanged), remaining paragraph headings were adjusted to include &lt;h2&gt; and &lt;h3&gt;, rather than &lt;h6&gt; as before.  I used CSS to maintain an appropriate font size, style and color within the content of the page.  No other changes were made to the page content and/or site structure.</p><p>I will be interested to see if headings have any impact on the ranking of the homepage whatsoever.  Some still believe that headings have an impact on ranking, but some believe headings to be an antiquated aspect of on-site SEO.  Having used an established and indexed domain, as well as a page with content that is relatively static, should ultimately offer some insight as to whether or not headings play into the ranking of a page.</p><p>In the meantime, I welcome anyone with similar documented testing on the use of heading tags to share your experiences here!  I&#8217;d like to get more feedback on this issue, as there appears to be a great deal of confusion and/or disagreement on the potential impact of headings among search marketing experts these days!</p><div class="shr-publisher-346"></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fthe-jury-is-still-out-on-headings%2F' data-shr_title='The+Jury+Is+Still+Out+On+Headings...'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fthe-jury-is-still-out-on-headings%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fthe-jury-is-still-out-on-headings%2F' data-shr_title='The+Jury+Is+Still+Out+On+Headings...'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><p>Related posts:<ol><li><a href='http://www.seoaly.com/are-heading-tags-important/' rel='bookmark' title='How Important Are Headings These Days?'>How Important Are Headings These Days?</a></li></ol></p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/the-jury-is-still-out-on-headings/">The Jury Is Still Out On Headings&#8230;</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p>]]></content:encoded> <wfw:commentRss>http://www.seoaly.com/the-jury-is-still-out-on-headings/feed/</wfw:commentRss> <slash:comments>9</slash:comments> </item> <item><title>Final Results of NOSNIPPET Testing</title><link>http://www.seoaly.com/final-results-of-nosnippet-testing/</link> <comments>http://www.seoaly.com/final-results-of-nosnippet-testing/#comments</comments> <pubDate>Mon, 08 Sep 2008 16:23:00 +0000</pubDate> <dc:creator>Alysson</dc:creator> <category><![CDATA[On-Site SEO]]></category> <category><![CDATA[Organic SEO]]></category> <category><![CDATA[NOSNIPPET]]></category> <category><![CDATA[robots argument]]></category><guid isPermaLink="false">http://www.seoaly.com/?p=327</guid> <description><![CDATA[<p>Well, the results are in.  Oilman was absolutely right &#8211; as if I ever doubted him for a moment!   The NOSNIPPET robots argument was not only preventing Google from generating a random snippet of text to use as the description within the SERPS, it appears to have been preventing a description from showing at all.  [...]</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/final-results-of-nosnippet-testing/">Final Results of NOSNIPPET Testing</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p> Related posts:<ol><li><a href='http://www.seoaly.com/nosnippet-unexpected-results/' rel='bookmark' title='Unexpected Results Using NOSNIPPET'>Unexpected Results Using NOSNIPPET</a></li></ol>]]></description> <content:encoded><![CDATA[<p>Well, the results are in.  <a href="http://www.oilman.ca/" target="_blank">Oilman</a> was absolutely right &#8211; as if I ever doubted him for a moment!   The NOSNIPPET robots argument was not only preventing Google from generating a random snippet of text to use as the description within the SERPS, it appears to have been preventing a description from showing at all.  <span id="more-327"></span>For those of you who may not have read it, I wrote a post on August 15th entitled &#8220;<a title="Unexpected Results Unsing NOSNIPPET" href="http://www.seoaly.com/nosnippet-unexpected-results/" target="_blank">Unexpected Results Using NOSNIPPET</a>&#8221; which forever immortalized my ignorance as to the purpose of the argument&#8230;and the fact that I&#8217;m not ashamed to admit my position on the learning curve!</p><p>At that time, it was my understanding that NOSNIPPET would allow me to better control what appears as the description within Google&#8217;s SERPs.  I assumed Google would automatically default back to the description META tag itself.  I was wrong.  Wrong&#8230;wrong&#8230;wrong.  What NOSNIPPET caused Google to do in my case was to show no description of the page at all &#8211; opting instead only to show the page title.  Upon realizing this (on August 15th&#8230;shortly before writing the original post) I promptly removed all NOSNIPPET arguments from all pages.  Testing&#8230;isn&#8217;t that we we SEOs do?  I guess that&#8217;s what they mean by &#8220;trial &amp; error&#8221;.  ;)</p><p>Here is the result of my having removed the NOSNIPPET argument from my robots META tag:</p><p><img class="aligncenter" title="NOSNIPPET follow up screenshot" src="http://www.seoaly.com/images/nosnippetserp3.jpg" alt="" width="500" height="618" /></p><p>As you can see, the pages are now appearing with the appropriate descriptions as they should have been initially.  And as they likely would have been  if I&#8217;d just left it alone in the first place.  My goal to begin with was to control something that hadn&#8217;t even become a problem.  I&#8217;ve always been the type to attempt to anticipate a problem and prevent it from occurring&#8230;I&#8217;m very proactive in nature.  At least in this case, my proactivity caused a problem that may never have occurred in the first place.  Lesson learned.</p><p>It was important that I test the NOSNIPPET argument at some point, but I likely should have done a bit more research on it&#8217;s original intent prior to doing so.  Now that I know what it does, or at least what it did in this case, I can&#8217;t imagine a reason for wanting to use it.  I can&#8217;t think of a page worth listing in the index that wouldn&#8217;t benefit from having a corresponding description.  Why would anyone want a page listed in the index without a description?  And if there is no ultimate goal of increasing click-through rates, why not just NOINDEX the page and keep it out of the SERPs altogether.</p><p>I&#8217;d love to get some feedback on the legitimate use of NOSNIPPET and any thoughts on the logic behind having a page listed in the SERPs with just a title and no description!  Did I mention that I have removed the nofollow commands from my post comments?  To dissuade spammers, you do have a leave a certain number of comments before the NOFOLLOW is removed&#8230;but it is a low number and I know you&#8217;ll all understand.  :)</p><p>Please feel free to discuss away!  ;)</p><div class="shr-publisher-327"></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Ffinal-results-of-nosnippet-testing%2F' data-shr_title='Final+Results+of+NOSNIPPET+Testing'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Ffinal-results-of-nosnippet-testing%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Ffinal-results-of-nosnippet-testing%2F' data-shr_title='Final+Results+of+NOSNIPPET+Testing'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><p>Related posts:<ol><li><a href='http://www.seoaly.com/nosnippet-unexpected-results/' rel='bookmark' title='Unexpected Results Using NOSNIPPET'>Unexpected Results Using NOSNIPPET</a></li></ol></p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/final-results-of-nosnippet-testing/">Final Results of NOSNIPPET Testing</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p>]]></content:encoded> <wfw:commentRss>http://www.seoaly.com/final-results-of-nosnippet-testing/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Unexpected Results Using NOSNIPPET</title><link>http://www.seoaly.com/nosnippet-unexpected-results/</link> <comments>http://www.seoaly.com/nosnippet-unexpected-results/#comments</comments> <pubDate>Fri, 15 Aug 2008 18:11:09 +0000</pubDate> <dc:creator>Alysson</dc:creator> <category><![CDATA[On-Site SEO]]></category> <category><![CDATA[Organic SEO]]></category> <category><![CDATA[meta tags]]></category> <category><![CDATA[NOSNIPPET]]></category> <category><![CDATA[robots]]></category><guid isPermaLink="false">http://www.seoaly.com/?p=251</guid> <description><![CDATA[<p>I have been playing around with some different robots arguments to determine exactly what they do.  The constructive purpose of the nosnippet tag continues to elude me, as it didn&#8217;t work as I had believed it would (or should, for that matter).  In using the nosnippet argument, my assumption was that it would prevent Google [...]</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/nosnippet-unexpected-results/">Unexpected Results Using NOSNIPPET</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p> Related posts:<ol><li><a href='http://www.seoaly.com/final-results-of-nosnippet-testing/' rel='bookmark' title='Final Results of NOSNIPPET Testing'>Final Results of NOSNIPPET Testing</a></li></ol>]]></description> <content:encoded><![CDATA[<p>I have been playing around with some different robots arguments to determine exactly what they do.  The constructive purpose of the nosnippet tag continues to elude me, as it didn&#8217;t work as I had believed it would (or should, for that matter).  In using the nosnippet argument, my assumption was that it would prevent Google from simply choosing random text from the page as the SERP description &#8211; opting instead to default to the information included in the description META tag.  That isn&#8217;t, however, what appears to have happened here on SEOAly<span id="more-251"></span>, as illustrated by the image below&#8230;</p><p><a href="http://www.seoaly.com/images/nosnippetserp.jpg"><img class="aligncenter" title="nosnippet SERP illustration" src="http://www.seoaly.com/images/nosnippetserp.jpg" alt="" width="653" height="746" /></a></p><p>Todd Friesen (a.k.a. <a title="Todd Friesen" href="http://www.oilman.ca/" target="_blank">Oilman</a>) has since informed me that the nosnippet argument instructs Google not to show a description in the SERPs at all&#8230;and that appears to be confirmed by at least some of the results above.  It doesn&#8217;t, however, explain why some pages/posts appear with the META description and others appear with nothing at all, despite all pages/posts having included the nosnippet argument when they were indexed.</p><p>I have since removed all of the nosnippet arguments from all pages of SEOAly to see how long it takes Google to update the info in their index.  I will also be interested to see if they elect to use the description META tags I have created for each page/post or simply choose their own random text to display.  Equally confusing is the fact that ALL pages of SEOAly previously included the nosnippet tag&#8230;yet, as you can see in the image above, some results DO include descriptions &#8211; and the text is clearly what is included within the description META tags themselves.  A little consistency&#8230;that&#8217;s all I ask, Google!</p><p>On the flip side, before fully understanding the apparent outcome of using a nosnippet tag, I also decided to use it for our <a title="Welcome Home Pet Sitting" href="http://welcomehomepetsitting.net" target="_blank">Welcome Home Pet Sitting</a> website.  I hoped it would help me better control the information included in the SERPs and thereby increase the click through rates to our site.  As illustrated by the image below, the results of using nosnippet on that site weren&#8217;t exactly what I had anticipated&#8230;the results are also measurably different than what has occurred with SEOAly.  Nonetheless, nosnippet did function as I believed it would for the other static pages of the site, allowing me to achieve the goal of having a modicum of control over what potential clients learn about us solely from SERPs.</p><p><a href="http://www.seoaly.com/images/nosnippetserp2.jpg"><img class="aligncenter" title="nosnippet results 2" src="http://www.seoaly.com/images/nosnippetserp2.jpg" alt="" width="629" height="603" /></a></p><p>As you can see, despite the use of the nosnippet argument on the home page, Google elected to generate the SERP description for that page automatically based on the page text &#8211; much to my dismay!  The second result in the image above, one of two blog articles I have written for that site, shows no description at all.  The second blog entry (result 7 above) shows the actual META description of the post, as do the rest of the static pages of the site &#8211; all of which included the nosnippet argument when they were indexed.  Those results are what led me to believe that my theory regarding a nosnippet argument resulting in Google defaulting to the META description to be correct.  It now appears my theory clearly wasn&#8217;t correct.  I now don&#8217;t have a clue why anyone would want to use nosnippet at all, if the intended result is having no description included in the SERPs&#8230;</p><p>Prior to my incorporating the nosnippet argument into Welcome Home&#8217;s pages, Google was randomly generating the description for all pages of the site, despite the existence of a unique description META tag on each page.  That is what prompted me to test the use of nosnippet in the first place.  Initially I got the results I expected &#8211; Google replaced the randomly generated SERP descriptions with the text included within the description META tag itself &#8211; they did NOT eliminate the SERP description altogether.  &#8220;Sweet&#8230;&#8221;, I thought&#8230;&#8221;theory confirmed&#8221;.  Uh, yeah&#8230;not so much, it appears.  I&#8217;ve also since removed the nosnippet tag from Welcome Home&#8217;s site to see how things shake out without it.</p><p>Despite the issues I&#8217;m trying to resolve in fully understanding the purpose of the nosnippet argument, BIG kudos to Danny at SEOmoz for including that on his <a title="SEO Cheat Sheet from SEOmoz" href="http://www.seomoz.org/blog/the-web-developers-seo-cheat-sheet" target="_blank">SEO Cheat Sheet</a>.</p><div class="shr-publisher-251"></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fnosnippet-unexpected-results%2F' data-shr_title='Unexpected+Results+Using+NOSNIPPET'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fnosnippet-unexpected-results%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fnosnippet-unexpected-results%2F' data-shr_title='Unexpected+Results+Using+NOSNIPPET'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><p>Related posts:<ol><li><a href='http://www.seoaly.com/final-results-of-nosnippet-testing/' rel='bookmark' title='Final Results of NOSNIPPET Testing'>Final Results of NOSNIPPET Testing</a></li></ol></p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/nosnippet-unexpected-results/">Unexpected Results Using NOSNIPPET</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p>]]></content:encoded> <wfw:commentRss>http://www.seoaly.com/nosnippet-unexpected-results/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>How Important Are Headings These Days?</title><link>http://www.seoaly.com/are-heading-tags-important/</link> <comments>http://www.seoaly.com/are-heading-tags-important/#comments</comments> <pubDate>Fri, 01 Aug 2008 23:49:06 +0000</pubDate> <dc:creator>Alysson</dc:creator> <category><![CDATA[On-Site SEO]]></category> <category><![CDATA[Organic SEO]]></category> <category><![CDATA[h1]]></category> <category><![CDATA[h2]]></category> <category><![CDATA[h3]]></category> <category><![CDATA[headings]]></category><guid isPermaLink="false">http://www.seoaly.com/?p=169</guid> <description><![CDATA[<p>I&#8217;m having a bit of a difference of opinion over the importance of headings &#8211; specifically H1, H2 and H3 tags.  A while back I made some suggested changes to our standard operating prodedure with regard to creating website rough drafts.  Several of my changes were adopted and have since been implemented into our SOP, [...]</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/are-heading-tags-important/">How Important Are Headings These Days?</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p> Related posts:<ol><li><a href='http://www.seoaly.com/the-jury-is-still-out-on-headings/' rel='bookmark' title='The Jury Is Still Out On Headings&#8230;'>The Jury Is Still Out On Headings&#8230;</a></li></ol>]]></description> <content:encoded><![CDATA[<p>I&#8217;m having a bit of a difference of opinion over the importance of headings &#8211; specifically H1, H2 and H3 tags.  A while back I made some suggested changes to our standard operating prodedure with regard to creating website rough drafts.  Several of my changes were adopted and have since been implemented into our SOP, but the recommendation that keyword-rich headings be incorporated into all rough drafts wasn&#8217;t.  <span id="more-169"></span>I was a little ticked&#8230;mostly because of all the small changes I suggested, I felt the proper use of headings had the potential to have the biggest impact in the short-term.</p><p>Some of the powers that be were supposedly informed by &#8220;someone with a great deal more knowledge and experience in the field of SEO&#8230;&#8221; than I that headings don&#8217;t impact ranking and are &#8220;an old SEO trick&#8221;.  I disagree whole-heartedly, but haven&#8217;t really done enough long-term testing on multiple sites to back my claims up with supporting data.  The sad part is that he doesn&#8217;t have supporting evidence either, but apparently his &#8220;reputation&#8221; provides him with enough authority to not have to support his contentions with actual proof.  It certainly made me question his commitment to the aspects of on-page SEO and wonder if he&#8217;s mostly a link whore.</p><h1>Headings Just Make Sense</h1><p>Just the theory behind paragraph headings themselves speaks to the very core of SEO&#8230;usability.  Paragraph headings are a short and sweet summary of the text content below it.  They naturally lend themselves to the inclusion of the search terms targeted by the content that follows.  Since we all know that keyword density itself is a myth and that the positioning of keywords within the content is what is important, but what about headings?  It only seems natural that extra &#8220;weight&#8221; would be given to whatever terms the search engines find within heading tags.</p><p>One would also have to assume that to a certain extent LSI would demand that primary terms be identified clearly &#8211; based in part on their position within the context of the page content.  Headings seem like a natural, user-friendly way to communicate the focus of the text information included within a website page to algorithms, as well as users.  Just like internal linking improves a user&#8217;s ability to navigate to the information they desire, headings improve a user&#8217;s ability to scan content and locate the specific information they need within a given page.  Right?</p><h2>Using Multiple Heading Tags</h2><p>I&#8217;ve used multiple H1, H2 and H3 tags on a single page without any noticible decline in ranking.  On the other hand, I&#8217;ve come across a number of sources that indicate using each of them only once on a single page is optimal.  I have decided to let a test page ride for 30 days with multiple headings and determine where the ranking ends up.  I&#8217;ll then modify it to include just one H1, H2 and H3 tag to see what impact, if any, it has on the ranking.  I may then remove the headings from the same page altogether to see what, if any, difference that makes.  I guess that will help me answer the question regarding the importance of headings for myself.</p><p>In the meantime, I&#8217;d love to get some feedback regarding other&#8217;s experiences and opinions regarding H1, H2 and H3 tags.  Important?  Not important?  Old SEO Trick?  An essential element of on-page SEO?  You tell me!  My experience lends itself to support the argument that they are &#8220;important&#8221; and &#8220;an essential element of on-page SEO&#8221;, but I&#8217;m still technically a rookie&#8230;I need some industry vets to weigh in here.</p><div class="shr-publisher-169"></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fare-heading-tags-important%2F' data-shr_title='How+Important+Are+Headings+These+Days%3F'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fare-heading-tags-important%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fare-heading-tags-important%2F' data-shr_title='How+Important+Are+Headings+These+Days%3F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><p>Related posts:<ol><li><a href='http://www.seoaly.com/the-jury-is-still-out-on-headings/' rel='bookmark' title='The Jury Is Still Out On Headings&#8230;'>The Jury Is Still Out On Headings&#8230;</a></li></ol></p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/are-heading-tags-important/">How Important Are Headings These Days?</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p>]]></content:encoded> <wfw:commentRss>http://www.seoaly.com/are-heading-tags-important/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>On-Site SEO &amp; Keyword Research &#8211; Important to Small Business?</title><link>http://www.seoaly.com/on-site-seo-keyword-research-important-to-small-business/</link> <comments>http://www.seoaly.com/on-site-seo-keyword-research-important-to-small-business/#comments</comments> <pubDate>Tue, 24 Jun 2008 22:33:31 +0000</pubDate> <dc:creator>Alysson</dc:creator> <category><![CDATA[On-Site SEO]]></category> <category><![CDATA[Organic SEO]]></category> <category><![CDATA[keyword research]]></category> <category><![CDATA[on-page seo]]></category> <category><![CDATA[small business]]></category><guid isPermaLink="false">http://seoaly.com/?p=9</guid> <description><![CDATA[<p>Websites are to small business success today what door-to-door sales were to the success of Kirby vacuums in the &#8217;80s. Despite the pop culture ribbing the company may now receive, their door-to-door sales efforts made Kirby Vacuum Cleaners a household name in suburban neighborhoods throughout the country. That marketing plan worked because of the consumer [...]</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/on-site-seo-keyword-research-important-to-small-business/">On-Site SEO &amp; Keyword Research &#8211; Important to Small Business?</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p> No related posts.]]></description> <content:encoded><![CDATA[<p>Websites are to small business success today what door-to-door sales were to the success of Kirby vacuums in the &#8217;80s.  Despite the pop culture ribbing the company may now receive, their door-to-door sales efforts made Kirby Vacuum Cleaners a household name in suburban neighborhoods throughout the country.  That marketing plan worked because of the consumer psychology at the time.  <span id="more-9"></span><strong>On-page SEO and keyword research are integral parts of any small business Internet marketing plan</strong> &#8211; very much because consumers today demand more than what a single pitch from a salesperson can provide.  For every product or service that exists in the world, there are numerous sources wanting to provide it.</p><p>Thanks to the Internet, a housewife in Arizona can hop on the computer and order a vacuum cleaner from a guy in New Hampshire without ever changing out of her PJ&#8217;s.  And Billy Businessman in New Hampshire can thank the search engines for leading Bonnie Buyer from Arizona right to his virtual storefront. Not only is that kind of on-demand information and instant gratification great for consumers, but Internet marketing is the door that many small businesses need to target a nationwide audience, rather than being limited to a specific local or regional geographic area.  On-Page SEO and keyword research are the keys that help today&#8217;s small business owner open that door!</p><h4>The &#8220;CliffsNotes&#8221; Explanation of SEO</h4><p>Simply put, SEO refers to the strategy behind achieving a strong natural ranking in the search engine results for specific keywords/keyword phrases. It is essential that a small business owner know what applicable terms are most popular with the people searching for their products or services. Keyword research will help to identify the most popular target terms in a given industry. When it comes to optimizing a site for the search engines, identifying the most popular target terms through keyword research should be atop the to-do list.</p><p>There are basically two core aspects of Search Engine Optimization:  &#8220;on-page SEO&#8221; and &#8220;off-page SEO&#8221;. On-page refers to making specific changes to the source code of a website page.  Common on-page topics include, but are not limited to: META tags, headings, text content, keyword density, ALT attributes, etc. Off-page refers to the tactics employed to build the site&#8217;s reputation (or &#8220;authority&#8221;) with the search engines by building links from other sources and utilizing a variety of Social Media / Social Networking resources to expose your site, and therefore your small business, to potential visitors.  Links and visitors, as well as the authority that comes with both, can come from a variety of sources, like blogs, forums, discussions, online directories and social bookmarking sources like <a title="SEO - Social Bookmarking" href="http://del.icio.us/" target="_blank">Del.icio.us</a> and <a title="SEO - Social Bookmarking" href="http://www.stumbleupon.com/" target="_blank">StumbleUpon</a> &#8211; all of which fall into the category of off-page SEO.</p><h4>Small Business Owners Better Get In The Game</h4><p>Marketing has changed. I no longer have to settle for the products I can find in my hometown&#8230;I can order a handbag from the other side of the world, if I so choose.  Thanks to search engines, a great deal on a  Louis Vuitton knock-off is never more than a few keystrokes away.  For that reason, websites and search engines are major marketing avenues of choice for large and small businesses alike.</p><p>The reason for the shift is that consumers, today more so than ever before, are turning to search engines to find important information about the products and services they need or want.  They also use the Internet to find information about the companies they&#8217;re considering doing business with.  The bigger and better your reputation is online (meaning the more interaction you choose to have with potential visitors), the more search users are apt to find you through a wide variety of sources &#8211; not JUST search engines.</p><p>Being a success in small business today means having to embrace a big picture mentality.  Internet marketing has helped to level the playing field for many small business owners. Taking the time to implement a proper strategy that incorporates both off-page and on-page SEO can provide a small business with as much Internet exposure as a major corporation. Within the natural or organic search results, the financial resources of a corporation mean nothing. Organic results are unbiased (meaning you can&#8217;t &#8220;pay&#8221; for a position within the natural ranking) and rely essentially on how search engine friendly the site is from a design standpoint, as well as a number of off-page factors like link popularity.</p><p>Whether you already have a website or it is on your &#8220;to-do&#8221; list, it&#8217;s never too late to get started with keyword research. Once you know the specific terms your site should target, you can move on to the other the tasks ahead of you. Those tasks include everything from developing unique META tags for each page of the site to creating keyword-rich, robust text content for the pages being optimized. There will be future posts on these topics.  You can&#8217;t hope to build a search engine friendly site without starting somewhere &#8211; and that &#8220;somewhere&#8221; is keyword research.</p><h4>On-Page SEO Strategies Depend On Keyword Research</h4><p>Small businesses whose marketing plans exclude online marketing struggle to succeed, and typically end up failing in the long run. That is a harsh reality of the Information Age. That said, simply having a website isn&#8217;t enough&#8230;not only must the site exist, consumers must be able to find it.  Learning more about SEO can help you understand how to help consumers find your site more easily&#8230;and what the search engines look for in a &#8220;search engine friendly&#8221; website.</p><p>When a user inputs the phrase &#8220;refurbished bose speakers&#8221; into a search query, the search engines&#8217; goal is to list the sites that provide the most useful, relevant and popular information about &#8220;refurbished bose speakers&#8221; that exists in the index.  SEO helps to ensure that sites which have been optimized to target the term &#8220;refurbished bose speakers&#8221; appear more highly in the results, making those sites easier to find. Keyword research can help you determine the most popular terms the apply to your site and greatly increase the potential traffic to it!</p><h4>SEO vs. SEM?</h4><p>SEO is the acronym for &#8220;Search Engine Optimization&#8221;, while &#8220;SEM&#8221; is the acronym for &#8220;Search Engine Marketing&#8221;.  But aren&#8217;t they the same thing, you ask?  No&#8230;they&#8217;re not the same thing at all.  Search Engine Optimization, or SEO, is dedicated solely to improving the ranking of a website within the natural or organic SERPs (Search Engine Results Pages).  Search Engine Marketing, or SEM, basically refers to any and everything that goes into generating business through the search engines &#8211; including, but not limited to: pay-per-click advertising, lead generation services, banner advertising, etc.  Both rely a great deal on keyword research to identify the terms most often used by consumers in a search.</p><h4>Organic vs. Pay-Per-Click</h4><p>How easily visitors find a site depends on it&#8217;s position within the search results. The ultimate goal of SEO is to help search engines identify the most user-friendly sites and position them near the top of the natural search results.  Sites that aren&#8217;t properly optimized to be user-friendly must rely on pay-per-click advertising campaigns and appear within the &#8220;Sponsored&#8230;&#8221; or &#8220;Featured&#8230;&#8221; results above, below or beside the organic listings.</p><p>SEO is dedicated to ranking a site well in the natural listings &#8211; helping to eliminate the a potentially large pay-per-click investment.  A natural listing can drive a thousand visitors to your site a day without costing you a dime.  The same thousand visitors from a pay-per-click campaign could cost in excess of $100&#8230;$500&#8230;$1000 or more, depending on the cost-per-click.  And there is no guarantee that any of the thousand pay-per-click visitors will convert into incoming revenue.  That&#8217;s a pretty big financial gamble for most small business owners.</p><p>So, what&#8217;s the best alternative to pay-per-click? Learn the best practices of SEO in order to create a search engine friendly website that will rank well in the natural results, that&#8217;s what.  Ignorance is often costly when it comes to online marketing &#8211; like the assumption that pay-per-click advertising will lead to more sales. It has been my experience using SEO to achieve high rankings in the natural search results lead to greater conversion of site visitors into paying customers.</p><h4>Sold &#8211; What&#8217;s Next?</h4><p>Start with keyword research.  Nothing else matters unless you know what terms people use to find your products or services in a search.  You&#8217;ve got a lot of work ahead of you as it is, not doing keyword research is the best way to guarantee you&#8217;ll have to do it all twice.  Aspiring small business owners must be prepared to wear many hats. There is a lot more to marketing a successful small business than there was before the advent of the Internet. The success or failure of many small business today hinges on consumers finding a website on the Internet.  Having a better understanding of SEO and how search engines drive traffic to websites is essential to your success.</p><p>Keyword research will provide you with invaluable information &#8211; and, provided that you are willing to do the work yourself, all it will cost you is time. There are hundreds of self-proclaimed &#8220;SEO experts&#8221; out there ready to take your money. As with many aspects of running a small business, doing some or all of the SEO work yourself will be a far less expensive route.  It&#8217;s not that it won&#8217;t cost you anything &#8211; but the cost will be time, rather than money.  The real question is whether you&#8217;re willing to learn how to do the required work yourself or whether you should hire an SEO firm to do it for you.</p><h4>DIY (do-it-yourself) or DIFM (do-it-for-me)?</h4><p>There is literally nothing that an SEO firm can do to improve a site&#8217;s ranking that you can&#8217;t do yourself, if you&#8217;re willing to learn what to do and how to do it. Whether you decide to hire an firm to do the legwork for you or invest the time to do it yourself, you should still have a basic understanding of the process. At the very least, I would recommend doing some keyword research on your own. Even if you ultimately decide to hire someone to do the work, you will have the peace of mind of knowing whether the terms they suggest you target are ever used in a search.  You can tell a lot about the legitimacy of an SEO company based on the terms they provide you with as &#8220;target terms&#8221;.  It&#8217;s not much of a gamble to guarantee a page one ranking for &#8220;supercalifragilisticexpialidocious cupcakes&#8221;&#8230;ranking on page one for &#8220;iPods&#8221;, on the other hand &#8211; that&#8217;s another story altogether.</p><h4>DIY On-Page SEO Step One: Detailed Keyword Research</h4><p>A successful SEO strategy hinges upon identifying the most popular target terms that apply to the site. Imagine you&#8217;re on a ship at sea&#8230;you want to chart a course for the nearest port, but have no idea where to go or even where you are. A navigation system not only knows where you are, but can also chart a course for any destination you desire. Keyword research is like turning on a ship&#8217;s navigation system&#8230;leading the way toward increased website traffic like a lighthouse on the shore. Keyword research should be the very first task on any SEO &#8220;to-do&#8221; list.</p><p>First, make a list of all of the terms you believe search users would input into a search query. Remember, the more keywords and keyword phrases included on your original list, the more complete your research will be! Once you&#8217;ve completed the list, you can use one of many free keyword research tools available. While there are numerous keyword research tools out there, here are two of my favorites:</p><p><a title="SEO Book - Keyword Research Tool" href="http://tools.seobook.com/keyword-tools/seobook/index.php" target="_blank">SEO Book</a> &#8211; good comparative data on average daily search volume from Google, Yahoo!, MSN, etc.<br /> <a title="Keyword Discovery - Keyword Research Tool" href="http://www.keyworddiscovery.com/search.html" target="_blank">Keyword Discovery</a> &#8211; cumulative data from a variety of sources indicating search volume over twelve months</p><p>Creating an SEO strategy is really like putting together a puzzle, with a good ranking in search engines being the finished picture on the box. Just like every puzzle is different, so is every website&#8217;s SEO strategy. While I&#8217;m no puzzle master, it has been my experience that it&#8217;s easier to put together the outside edges of the puzzle first. Think of the terms you identify through keyword research like the outside of the puzzle&#8230;providing structure and organization as you piece together the rest of the big picture. Without a doubt, all SEO strategies require proper keyword research before any work is done to the site itself.</p><h4>Guarantees From &#8220;SEO Companies&#8221;</h4><p>SEO horror stories aren&#8217;t hard to find.  It&#8217;s not uncommon for me to hear, &#8220;I found a company that guarantees I&#8217;ll be on page one of Google for &#8220;weight loss&#8221; in 7-10 days&#8230;and it&#8217;s only going to cost me $2,000 up front and $100 a month&#8230;I have to sign a year contract, but its guaranteed, so&#8230;&#8221;.  I&#8217;m sure you did.  And I&#8217;m sure they&#8217;re a reputable company and that guarantee doesn&#8217;t sound at all like it could be TOO GOOD TO BE TRUE.</p><p>There are many search marketing firms out there ready to take advantage of your SEO ignorance.  Sorry, but it&#8217;s true. They&#8217;ll often approach business owners with promises of increased traffic and sales &#8211; which are both reasonable expectations of any worthwhile SEO strategy.  What should raise a red flag are the promises that seem too good to be true&#8230;like &#8220;page 1 in 7 days&#8230;&#8221; and &#8220;10,000 links within 48 hours&#8230;&#8221;. Like most everything else, there are proper ways and improper ways to achieve the same goal.  Many SEO companies sacrifice long term results for short term gains, because they know by the time your domain is thrown out of Google, they&#8217;ll already have your money.</p><p>That&#8217;s right, thrown out of Google.  Sites discovered employing what are considered &#8220;black hat&#8221;  tactics are simply banned from the index altogether &#8211; never to be allowed to return.  What good does it do to con Google into ranking a site on page one, only to have the site kicked out completely a few months later?  Unless you only intend to keep your small business open for 6 months, you should look into a better online marketing strategy &#8211; I&#8217;d suggest doing SEO the right way!</p><p>Be leery of any SEO firm that offers a guarantee&#8230;particularly guarantees of &#8220;page 1 rankings&#8230;&#8221; and &#8220;page 1 of Google in 7 days or less&#8230;&#8221;. If Matt Cutts can&#8217;t guarantee the top position in Google for $500,000, I certainly don&#8217;t see how anyone else can.</p><div class="shr-publisher-9"></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fon-site-seo-keyword-research-important-to-small-business%2F' data-shr_title='On-Site+SEO+%26amp%3B+Keyword+Research+-+Important+to+Small+Business%3F'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fon-site-seo-keyword-research-important-to-small-business%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.seoaly.com%2Fon-site-seo-keyword-research-important-to-small-business%2F' data-shr_title='On-Site+SEO+%26amp%3B+Keyword+Research+-+Important+to+Small+Business%3F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><p>No related posts.</p><p>For a limited time, save 50% on my already insanely affordable <a href="http://www.seoaly.com/affordable-small-business-website-design/">small business website design</a> service.  Or learn more about <a href="http://www.seoaly.com/seo-audit/">SEO audit</a> and <a href="http://www.seoaly.com/keyword-research/">keyword research</a> services.The post, <a href="http://www.seoaly.com/on-site-seo-keyword-research-important-to-small-business/">On-Site SEO &amp; Keyword Research &#8211; Important to Small Business?</a>, originated on SEOAly and may not be republished or reproduced without my written permission.</p>]]></content:encoded> <wfw:commentRss>http://www.seoaly.com/on-site-seo-keyword-research-important-to-small-business/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 14/79 queries in 0.628 seconds using disk: basic
Object Caching 3969/3979 objects using disk: basic

Served from: www.seoaly.com @ 2012-05-17 09:12:02 -->
