<?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>The Range Blog &#187; SEO Best Practices</title>
	<atom:link href="http://therangeblog.com/seo/seo-best-practices/feed/" rel="self" type="application/rss+xml" />
	<link>http://therangeblog.com</link>
	<description>Search Marketing in Our Words</description>
	<lastBuildDate>Fri, 23 Jul 2010 13:42:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>301, 302, 303, 307? And You Thought You Knew About Redirects</title>
		<link>http://therangeblog.com/seo/301-302-303-307-and-you-thought-you-knew-about-redirects/</link>
		<comments>http://therangeblog.com/seo/301-302-303-307-and-you-thought-you-knew-about-redirects/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 23:44:30 +0000</pubDate>
		<dc:creator>Kerry Dean</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Best Practices]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[302]]></category>
		<category><![CDATA[303]]></category>
		<category><![CDATA[307]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[found]]></category>
		<category><![CDATA[http status codes]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[object moved]]></category>
		<category><![CDATA[permanent redirect]]></category>
		<category><![CDATA[powerdown]]></category>
		<category><![CDATA[redirects]]></category>
		<category><![CDATA[status codes]]></category>
		<category><![CDATA[temporary redirect]]></category>

		<guid isPermaLink="false">http://therangeblog.com/?p=1254</guid>
		<description><![CDATA[As an SEO, I spend a lot of my time discussing redirects, specifically 301 redirects and 302 redirects. Talking about redirects with marketing managers and e-commerce directors can be a complete powerdown for all parties involved. There have been times where I have actually seen someone's eye go crossed while I was babbling on about temporary this and permanent that. It's not easy explaining redirects without losing your audience, as header status codes and redirects are not the most compelling subjects. To avoid those terrible scenarios, most SEOs simply tell their clients, "301 redirects are good, and 302 redirects are bad." 99.99% of the time, that's all that anyone needs to know. And regardless of whether or not anyone really knows the reasoning behind that claim, the fact is that everything almost always works better for SEO by using 301 redirects.]]></description>
			<content:encoded><![CDATA[<p>As an SEO, I spend a lot of my time discussing redirects, specifically 301 redirects and 302 redirects. Talking about redirects with marketing managers and e-commerce directors can be a complete powerdown for all parties involved. There have been times where I have actually seen someone&#8217;s eye go crossed while I was babbling on about temporary this and permanent that.</p>
<p>It&#8217;s not easy explaining redirects without losing your audience, as header status codes and redirects are not the most compelling subjects. To avoid those terrible scenarios, most SEOs simply tell their clients, &#8220;301 redirects are good, and 302 redirects are bad.&#8221; 99.99% of the time, that&#8217;s all that anyone needs to know. And regardless of whether or not anyone really knows the reasoning behind that claim, the fact is that everything almost always works better for SEO by using 301 redirects.</p>
<p>But I say we can&#8217;t stop there. Why restrict the boring nature of a redirects to verbal conversations only? I say we must take this exhausting topic to the blog! We need to have it down in writing! We must dive deeper into the topic of redirects! That&#8217;s what I say. So without any further ado, I&#8217;d like to get started on this long-awaited, long-winded topic: HTTP Status Codes, specifically the 3xx series. Here is a brief summary of the 8 HTTP status codes from the 3xx series:</p>
<ul>
<li><strong>300 Multiple Choices</strong><br />
Indicates multiple options for the resource that the client may follow. It, for instance, could be used to present different format options for video, list files with different extensions, or word sense disambiguation.</li>
</ul>
<ul>
<li> <strong>301 Moved Permanently</strong><br />
This and all future requests should be directed to the given URI.</li>
</ul>
<ul>
<li> <strong>302 Found</strong> (aka <strong><em>Object Moved</em></strong> aka <strong><em>Moved Temporarily</em></strong>)<br />
This is the most popular redirect code, but also an example of industrial practice contradicting the standard. HTTP/1.0 specification (RFC 1945 ) required the client to perform a temporary redirect (the original describing phrase was “Moved Temporarily”), but popular browsers implemented it as a 303 See Other. Therefore, HTTP/1.1 added status codes 303 and 307 to disambiguate between the two behaviors. However, the majority of Web applications and frameworks still use the 302 status code as if it were the 303.</li>
</ul>
<ul>
<li> <strong>303 See Other</strong><br />
The response to the request can be found under another URI using a GET method. When received in response to a PUT, it should be assumed that the server has received the data and the redirect should be issued with a separate GET message.</li>
</ul>
<ul>
<li> <strong>304 Not Modified</strong><br />
Indicates the resource has not been modified since last requested. Typically, the HTTP client provides a header like the If-Modified-Since header to provide a time against which to compare. Utilizing this saves bandwidth and reprocessing on both the server and client, as only the header data must be sent and received in comparison to the entirety of the page being re-processed by the server, then resent using more bandwidth of the server and client.</li>
</ul>
<ul>
<li> <strong>305 Use Proxy</strong><br />
Many HTTP clients (such as Mozilla[4] and Internet Explorer) do not correctly handle responses with this status code, primarily for security reasons.</li>
</ul>
<ul>
<li> <strong>306 Switch Proxy</strong><br />
No longer used.</li>
</ul>
<ul>
<li> <strong>307 Temporary Redirect</strong><br />
In this occasion, the request should be repeated with another URI, but future requests can still use the original URI. In contrast to 303, the request method should not be changed when reissuing the original request. For instance, a POST request must be repeated using another POST request.</li>
</ul>
<p>How about that? I bet you didn&#8217;t know that there were actually <strong>eight</strong> unique status codes for redirects. If you read through that list, you may have noticed that, technically, the 307 is the <em>Temporary Redirect</em>. The 302 is actually listed as <em>Found</em> or <em>Moved</em>. Furthermore, they had to create the 303 and 307 responses after various browsers were interpreting the 302 differently. Fascinating, right? I wonder how many SEO&#8217;s actually know about the subtle differences between a 302 and a 307.</p>
<p>But let&#8217;s not stop there. Apparently, it looks like the 303 is actually what most SEOs talk about when they speak of a 302 temporary redirect. <a href="http://mcanerin.blogspot.com/2009/09/what-you-probably-dont-know-about.html" target="_blank">Ian McAnerin</a> describes it very well on his blog, so I borrowed this next part from him:</p>
<blockquote><p>In reality, a 302 just means &#8220;Object Moved&#8221;, or &#8220;Found&#8221;, which, if accompanied by a target URL, browsers and servers interpret as a redirect. But with no target URL, they will happily stay there, and it&#8217;s not an error.</p>
<p>In reality, a 303 is what most SEO&#8217;s think a 302 is. A 303 means &#8220;See Other&#8221;. A 307 is the actual Temporary Redirect. It really means temporary, as in the very next request should also be made to the old URL, and the new one should not even be cached. This is usually only used for emergency redirects (like when a primary server is down) and the like.</p>
<p>A302 doesn&#8217;t dictate a redirect, it just says that what you were looking for moved, and it&#8217;s been found there. You are usually redirected only as a courtesy and for usability purposes. Technically, you should use a 303, which really does the job properly.</p></blockquote>
<p>How about that? Can you believe it? Have you even heard of a 303 redirect? It&#8217;s crazy, huh?</p>
<p>If you&#8217;re still with me, I know this information is probably news to you. Or your eyes have glazed over with the inspirational information in this post. I mean, this stuff is obviously rocket science. At any rate, the good news is that you don&#8217;t really need to have an in-depth knowledge of these redirects (well, unless you run into someone who might dismiss you because you don&#8217;t know this stuff) because it&#8217;s true that 301 redirects do take care of everything 99.99% of the time. The other good news is that now you know about <strong><em>all</em></strong> of the redirect status codes. Now go forth and 303. Er, uh, I mean 301. Or was it 307? :)</p>
]]></content:encoded>
			<wfw:commentRss>http://therangeblog.com/seo/301-302-303-307-and-you-thought-you-knew-about-redirects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Quickly Will 301 Redirects Kick In?</title>
		<link>http://therangeblog.com/seo/how-quickly-will-301-redirects-kick-in/</link>
		<comments>http://therangeblog.com/seo/how-quickly-will-301-redirects-kick-in/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 19:17:18 +0000</pubDate>
		<dc:creator>Kerry Dean</dc:creator>
				<category><![CDATA[Online Strategies]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Best Practices]]></category>
		<category><![CDATA[301 redirects]]></category>
		<category><![CDATA[archives]]></category>
		<category><![CDATA[authors]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[counterpart]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[googlebot]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[kicking in]]></category>
		<category><![CDATA[permanent redirects]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[redirects]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[URL structure]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://therangeblog.com/?p=1177</guid>
		<description><![CDATA[In another attempt to pull the curtain back on this blog operation, today I am going to discuss the redirects we used to redirect all URLs from the previous blog to the current blog. Also known as 301 permanent redirects, 301 redirects are a the most important SEO item to consider when changing URL structures or moving from one domain to another. In the case of TheRangeBlog.com, we actually moved from rangeonlinemedia.com/blog to therangeblog.com. We implemented 301 redirects for all URLs, and it's been a week since the move. But the question is: Have these 301 redirects kicked in yet?]]></description>
			<content:encoded><![CDATA[<p>In another attempt to pull the curtain back on this blog operation, today I am going to discuss the redirects we used to redirect all URLs from the previous blog to the current blog. Also known as 301 permanent redirects, 301 redirects are a the most important SEO item to consider when changing URL structures or moving from one domain to another. In the case of TheRangeBlog.com, we actually moved from rangeonlinemedia.com/blog to therangeblog.com. We implemented 301 redirects for all URLs, and it&#8217;s been a week since the move. But the question is: Have these 301 redirects kicked in yet?</p>
<div id="attachment_1183" class="wp-caption aligncenter" style="width: 570px"><img class="size-full wp-image-1183" title="When will Google remove those old URLs from their index?" src="http://therangeblog.com/wp-content/uploads/range-blog-301-redirects-update-11112009-google.jpg" alt="When will Google remove those old URLs from their index?" width="560" height="177" /><p class="wp-caption-text">When will Google remove those old URLs from their index?</p></div>
<div id="attachment_1184" class="wp-caption aligncenter" style="width: 538px"><img class="size-full wp-image-1184" title="Hey Yahoo! Have you even heard of a 301 redirect?" src="http://therangeblog.com/wp-content/uploads/range-blog-301-redirects-update-11112009-yahoo.jpg" alt="Hey Yahoo! Have you even heard of a 301 redirect?" width="528" height="277" /><p class="wp-caption-text">Hey Yahoo! Have you even heard of a 301 redirect?</p></div>
<div id="attachment_1185" class="wp-caption aligncenter" style="width: 595px"><img class="size-full wp-image-1185" title="Partial Credit for Bing. They never really indexed our old blog very well anyways." src="http://therangeblog.com/wp-content/uploads/range-blog-301-redirects-update-11112009-bing.jpg" alt="Partial Credit for Bing. They never really indexed our old blog very well anyways." width="585" height="172" /><p class="wp-caption-text">Partial Credit for Bing. They never really indexed our old blog very well anyways.</p></div>
<p>All 3 top search engines still have a lot of URLs indexed from the previous blog location:</p>
<ul>
<li>Google: 127 URLs indexed</li>
<li>Yahoo: 244 URLs indexed</li>
<li>MSN Bing: 29 URLs indexed</li>
</ul>
<p>This is not surprising in the least bit. While all search engines advocate the use of 301 redirects when changing URL structures and/or domains, they don&#8217;t seem to remove the old site URLs very quickly. In my experience, it can take a up to 3 months. It really just depends on the number of URLs and other factors. I mean, maybe googlebot is having a rough day or something.</p>
<p>The old Range blog at rangeonlinemedia.com/blog had about 300 URLs. Included in those 300 URLs were post pages, archive pages, tags, author pages and other links on the blog. As mentioned earlier, we created 301 redirects for all URLs. Here is how we redirected those URLs:</p>
<ul>
<li>Posts (301 redirected on a 1-to-1 basis to the post URLs on the new blog)</li>
<li>Archives (301 redirected all archive pages to the http://therangeblog.com/)</li>
<li>Tags (301 redirected all tag pages to the http://therangeblog.com/)</li>
<li>Author pages (301 redirected all author pages to the http://therangeblog.com/)</li>
<li>Images, CSS files, RSS links, etc&#8230; (301 redirected all misc file URLs to the http://therangeblog.com/)</li>
</ul>
<p>I typically advocate 301 redirecting every URL on a 1-to-1 basis to its counterpart URL on a new site. For TheRangeBlog.com, we did that for post pages. For all other URLs, we created a wildcard redirect. Basically, all non-post URLs are 301&#8242;d to the homepage of TheRangeBlog.com. It was a time/resource issue. I know, I know. Not perfect, but it&#8217;ll have to do. BTW, none of our old blog URLs had any links, so I wasn&#8217;t too worried about 301&#8242;ing a random tag URL to its counterpart on the new blog. Just sayin&#8217; is all&#8230;</p>
<p>Well, that&#8217;s about it for now. Stay tuned for more &#8211; in the future!</p>
]]></content:encoded>
			<wfw:commentRss>http://therangeblog.com/seo/how-quickly-will-301-redirects-kick-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Update: Getting Indexed by Google, Yahoo &amp; Bing</title>
		<link>http://therangeblog.com/seo/blog-update-getting-indexed-by-google-yahoo-bing/</link>
		<comments>http://therangeblog.com/seo/blog-update-getting-indexed-by-google-yahoo-bing/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 23:27:28 +0000</pubDate>
		<dc:creator>Kerry Dean</dc:creator>
				<category><![CDATA[Online Strategies]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Best Practices]]></category>
		<category><![CDATA[301 redirects]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blog update]]></category>
		<category><![CDATA[crawling]]></category>
		<category><![CDATA[disallow]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[getting indexed]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[msn]]></category>
		<category><![CDATA[msn bing]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[robots.txt]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[webmaster accounts]]></category>
		<category><![CDATA[xml sitemap]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://therangeblog.com/?p=1140</guid>
		<description><![CDATA[Last Tuesday morning (Nov. 3) we launched TheRangeBlog.com. When you move a blog from one domain to another, there are a lot of I's to dot and T's to cross. I did what any project manager would do: I came up with a simple checklist. Many of the items are SEO best practices for redirects. In this case, we had to keep in mind the fact that we were moving from one domain to another. Here is what we did.]]></description>
			<content:encoded><![CDATA[<p>Last Tuesday morning (Nov. 3) we launched TheRangeBlog.com. When you move a blog from one domain to another, there are a lot of I&#8217;s to dot and T&#8217;s to cross. I did what any project manager would do: I came up with a simple checklist. Many of the items are SEO best practices for redirects. In this case, we had to keep in mind the fact that we were moving from one domain to another. Here is what we did:</p>
<ul>
<li>We removed the placeholder HTML file for the homepage.</li>
<li>We removed the disallow entry from the robots.txt file.</li>
<li>We updated the privacy setting in Wordpress to allow search engine access</li>
<li>We updated our corporate website to reflect the new blog URL.</li>
<li>We created and uploaded the 301 redirects from all of the old blog URLs to the counterpart URLs on the new blog domain. [Note: We did not write 1-to-1 redirects for every URL. Due to time constraints, we only created 1-to-1 redirects for the 60 or so blog post URLs. For all other URLs, we created a wildcard redirect that 301'd all URLs to the new blog's homepage. Due to our previous blog's lack of links, I caved on this item. In most other cases, I recommend 1-t0-1 redirects when changing URL structure or moving from one domain to another.]</li>
<li>We built an XML sitemap for the new blog.</li>
<li>We created/verified Webmaster accounts with Google, Yahoo and Bing. In these accounts, we submitted our <a href="http://therangeblog.com/sitemap.xml" target="_self">XML sitemap location</a>. All sitemaps were accessed within 24 hours of submission.</li>
</ul>
<p>All of that took place last Tuesday (3-Nov-2009). Today is November 10, 2009. How have the search engines responded? Let&#8217;s take a look at our site counts in Google, Yahoo and MSN Bing:</p>
<div id="attachment_1170" class="wp-caption aligncenter" style="width: 526px"><img class="size-full wp-image-1170" title="Google Site Count: 8 URLs indexed" src="http://therangeblog.com/wp-content/uploads/google-site-count-index-therangeblog-11102009.jpg" alt="Google Site Count: 8 URLs indexed" width="516" height="163" /><p class="wp-caption-text">Google Site Count: 8 URLs indexed</p></div>
<div id="attachment_1171" class="wp-caption aligncenter" style="width: 511px"><img class="size-full wp-image-1171" title="Yahoo Site Count: 1 URL Indexed" src="http://therangeblog.com/wp-content/uploads/yahoo-site-count-index-therangeblog-11102009.jpg" alt="Yahoo Site Count: 1 URL Indexed" width="501" height="265" /><p class="wp-caption-text">Yahoo Site Count: 1 URL Indexed</p></div>
<div id="attachment_1172" class="wp-caption aligncenter" style="width: 560px"><img class="size-full wp-image-1172" title="MSN Bing Site Count: 49 URLs Indexed" src="http://therangeblog.com/wp-content/uploads/msn-bing-site-count-index-therangeblog-11102009.jpg" alt="MSN Bing Site Count: 49 URLs Indexed" width="550" height="154" /><p class="wp-caption-text">MSN Bing Site Count: 49 URLs Indexed</p></div>
<p>Just in case you cannot see the pictures, here are the results:</p>
<ul>
<li>Google: 8 URLs indexed</li>
<li>Yahoo: 1 URL indexed</li>
<li><strong>MSN: 49 URLs indexed</strong></li>
</ul>
<p>That&#8217;s amazing to me. In my experience with crawling speed and indexing speed, Google typically wins big. But after a week of TheRangeBlog.com being live and active, Bing is clearly winning the race to index our blog. Nice work, Bing! Thanks for taking note of our blog.</p>
<p>I should also note that our blog has almost no inbounds links. Aside from the links from our corporate site and from a few Range Twitter accounts, we have virtually no link authority. Our lack of inbound link love is obviously playing a role in how quickly our site is getting indexed. But worry not &#8211; because we are working on links! (And if you are the linking kind, please consider linking to us. I won&#8217;t beg, but I would appreciate any link juice. Well, not from bad neighborhoods. Yes, I am an SEO.)</p>
]]></content:encoded>
			<wfw:commentRss>http://therangeblog.com/seo/blog-update-getting-indexed-by-google-yahoo-bing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Robots Running Amok!</title>
		<link>http://therangeblog.com/seo/robots-running-amok/</link>
		<comments>http://therangeblog.com/seo/robots-running-amok/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 21:29:30 +0000</pubDate>
		<dc:creator>John Greer</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Best Practices]]></category>
		<category><![CDATA[crawl delay]]></category>
		<category><![CDATA[crawlers]]></category>
		<category><![CDATA[decepticons]]></category>
		<category><![CDATA[google webmaster tools]]></category>
		<category><![CDATA[natural search]]></category>
		<category><![CDATA[organic search]]></category>
		<category><![CDATA[robots]]></category>
		<category><![CDATA[robots.txt]]></category>
		<category><![CDATA[search engine spiders]]></category>
		<category><![CDATA[searchbots]]></category>
		<category><![CDATA[spiders]]></category>
		<category><![CDATA[xml sitemaps]]></category>

		<guid isPermaLink="false">http://therangeblog.com/?p=502</guid>
		<description><![CDATA[Robots are not simply a part of the future, but part of daily life for a website. Robots (A.K.A. crawlers or spiders) are an automated method to discover the pages and content on a website. Search engines employ robots, making robots integral to natural search traffic and also playing a role in paid search traffic. To make your way through this future of shiny metal and emotionless automatons, an important but underappreciated page on a website is the “robots.txt” page.]]></description>
			<content:encoded><![CDATA[<p>Robots (A.K.A. crawlers or spiders) are an automated method to discover the pages and content on a website. Search engines employ robots, making robots integral to natural search traffic and also playing a role in paid search traffic.</p>
<p>To make your way through this future of shiny metal and emotionless automatons, an important but under-appreciated page on a website is the “robots.txt” page. It serves as a guide for robots on how to behave on a site. Other robots besides search engines, including some nefarious robots (kind of like Decepticons) can sometimes be managed by this file as well.</p>
<p>Some tips for ensuring your site is prepared for search engine robots include:</p>
<ul>
<li>List all of your XML sitemaps. An XML sitemap is an easy source for robots to find all of your pages, videos, and other files. By including the sitemap URLs here, you are ensuring search engines can send traffic to any of your pages.</li>
<li>Tell the robots which areas are off-limits. This doesn’t involve <a rel="nofollow" href="http://en.wikipedia.org/wiki/Three_Laws_of_Robotics">Asimov’s Three Laws</a>, but you can prohibit access to files and directories that shouldn’t be found in search engines. Additionally, you can keep robots focused on crawling only important pages and keep them from spending all their time on unimportant content.</li>
<li>Always serve the same content to robots as users. Otherwise you can be hit with a penalty for misleading the search engines.</li>
<li>Avoid crawl delay for search engines. In rare cases, a robot can take up a lot of your server’s resources. You can add code to slow the robot down in these cases, but slowing a major search engine down can cause a traffic loss.</li>
<li>Test your file! Once you’re all done, use the free tools from Google Webmaster Tools and Bing Webmaster Center to make sure everything is working properly.</li>
</ul>
<p>This page can always be found at <a rel="nofollow" href="http://www.yourgreatsite.com/robots.txt">www.YourGreatSite.com/robots.txt</a>. Don’t be surprised if it hasn’t been created – even some major sites like <a rel="nofollow" href="http://www.rangeonlinemedia.com/blog/blog/admin/Pages/www.yahoo.com/robots.txt">Yahoo</a> haven’t made one.</p>
]]></content:encoded>
			<wfw:commentRss>http://therangeblog.com/seo/robots-running-amok/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Long Tail: Not Just for Paid Search Anymore!</title>
		<link>http://therangeblog.com/seo/the-long-tail-not-just-for-paid-search-anymore/</link>
		<comments>http://therangeblog.com/seo/the-long-tail-not-just-for-paid-search-anymore/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 21:45:37 +0000</pubDate>
		<dc:creator>Herndon Hasty</dc:creator>
				<category><![CDATA[Online Strategies]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Best Practices]]></category>
		<category><![CDATA[authoritative pages]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[long tail]]></category>
		<category><![CDATA[long tail search terms]]></category>
		<category><![CDATA[paid search]]></category>
		<category><![CDATA[revenue]]></category>
		<category><![CDATA[search engine marketing]]></category>
		<category><![CDATA[seo department]]></category>
		<category><![CDATA[seo strategy]]></category>

		<guid isPermaLink="false">http://therangeblog.com/?p=448</guid>
		<description><![CDATA[I started my life in search engine marketing on the paid side of the search equation. With ROI being at the bottom line of every decision made from keyword selection, match type strategies, campaign organization and, of course, bidding, amassing wins using long tail keywords was one of my favorite approaches. Good paid practitioners are constantly fighting to find ways to get those one or two keywords that drive huge traffic a little more efficient, but there’s really nothing like coming in to see a line like this in the previous day’s results.]]></description>
			<content:encoded><![CDATA[<p>I started my life in search engine marketing on the paid side of the search equation. With ROI being at the bottom line of every decision made from keyword selection, match type strategies, campaign organization and, of course, bidding, amassing wins using long tail keywords was one of my favorite approaches. Good paid practitioners are constantly fighting to find ways to get those one or two keywords that drive huge traffic a little more efficient, but there’s really nothing like coming in to see a line like this in the previous day’s results:</p>
<ul>
<li>Keyword: (random 7-term keyword)</li>
<li>Impressions: 1</li>
<li>Clicks: 1</li>
<li>Cost: $.25</li>
<li>Conversions: 1</li>
<li>Revenue: $1,256.37</li>
<li>ROI: Hahahahahaha</li>
</ul>
<p>It may be the only impression that particular keyword gets for the next 6 months. But if you can create a campaign that reaches out effectively enough to reach customers looking for very specific things, these one-click wonders can easily leverage investment in wider ranges of nonbrand keywords – i.e. make you look super smart.</p>
<p>With a solid SEO program and smart keyword selection, you can accomplish the same thing – only exponentially larger, given the volume of clicks that natural results drive versus paid ones. All it takes is a readable site and the time, patience and courage to see it through (though having an award-winning SEO department at your back can really help), via opportunities like:</p>
<ul>
<li>Taking your meta data beyond single-word targets based on what you’ve named your categories or products</li>
<li>Taking your product names and descriptions beyond what your branding team or manufacturers provide you</li>
<li>Taking your internal linking beyond a three-clicks-to-a-product mentality and finding ways to get engines from your most authoritative pages to your most valuable content faster</li>
</ul>
<p>Combining these efforts will open up your site to the ability to rank for a much wider range of keywords, in much the same way that a six-digit keyword buildout can, with much the same effect – only without those pesky click costs!</p>
]]></content:encoded>
			<wfw:commentRss>http://therangeblog.com/seo/the-long-tail-not-just-for-paid-search-anymore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Beginning to Look a Lot Like Christmas</title>
		<link>http://therangeblog.com/seo/its-beginning-to-look-a-lot-like-christmas/</link>
		<comments>http://therangeblog.com/seo/its-beginning-to-look-a-lot-like-christmas/#comments</comments>
		<pubDate>Fri, 29 May 2009 20:48:17 +0000</pubDate>
		<dc:creator>Herndon Hasty</dc:creator>
				<category><![CDATA[Online Strategies]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Best Practices]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[code freeze]]></category>
		<category><![CDATA[december]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[fluctuations]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[holiday strategies]]></category>
		<category><![CDATA[natural search results]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[seo gains]]></category>
		<category><![CDATA[seo project list]]></category>
		<category><![CDATA[site updates]]></category>
		<category><![CDATA[website development]]></category>

		<guid isPermaLink="false">http://therangeblog.com/?p=380</guid>
		<description><![CDATA[Getting winded trying to keep up with Google’s latest and greatest offerings? Well, don’t take your Nikes off just yet. Google recently announced a slate of updates and new developments, including ways to make your search results prettier and a new emphasis on fresh content. For those who’ve been encouraging clients to add microformats to their pages, you should feel a little vindicated, because these should be right up your alley. If that’s not enough, MSN also announced that they’re updating and rebranding Live Search, naming the concept Bing (previously known as Kumo) and gearing it towards behavioral search. If it works like they say it will, then we’ll have something to celebrate before July 4.]]></description>
			<content:encoded><![CDATA[<p>Getting winded trying to keep up with Google’s latest and greatest offerings?</p>
<p>Well, don’t take your Nikes off just yet. Google recently announced a <a rel="nofollow" href="http://searchengineland.com/google-searchology-day-recap-of-announcements-11230">slate of updates and new developments</a>, including ways to make your search results prettier and a new emphasis on fresh content. For those who’ve been encouraging clients to add microformats to their pages, you should feel a little vindicated, because these should be right up your alley. If that’s not enough, MSN also announced that they’re updating and rebranding Live Search, naming the concept <a rel="nofollow" href="http://news.cnet.com/8301-10805_3-10249940-75.html">Bing </a>(previously known as Kumo) and gearing it towards behavioral search. If it works like they say it will, then we’ll have something to celebrate before July 4.</p>
<p>So that’s some good news for the summer, but it’s more applicable for the winter. In terms of development, it’s time to start work (or at least planning) on site enhancements for the 2009 holiday season!</p>
<p>‘But it’s not even June!’ you might be thinking. Just remember to take into account a few important factors:</p>
<ul>
<li> <strong>Your Site Will be Untouchable in 4 -5 Months: </strong>Typically, large ecommerce sites go into a code freeze in October or early November at the absolute latest. A code freeze is a period of time where developers can work on site enhancements, but can’t actually push anything live for anything less than a life-or-death emergency in order to make sure that the site isn’t knocked out by errors at a critical time of year. So, in reality, it’s more like August rather than June on your production schedule.</li>
<li> <strong>Development Takes Time:</strong> The planning, pre-development legwork, development and eventual launch of changes to your site – SEO or otherwise – is a long process. Depending on your team and your process, you’re looking from two to six months just to get even simple, natural search-affecting changes made to the site. If you try to start making massive changes to your site in August, you could very easily wind up seeing your Holiday 2009 ambitions coming up sometime next March without some serious overtime or help.</li>
<li><strong>Search Engines Take Time:</strong> If SEO gains are even part of your goal, once you’ve made improvements to your site that are meant to improve your natural search results and seen them pushed live, you’re at the mercy of the engines. It can take anywhere from two days to four weeks to get your changes indexed, and another six to twelve weeks of fluctuations as Google, Yahoo and MSN fully digest your changes and start really advancing your positions.</li>
</ul>
<p>If you start counting backwards from December with these in mind, Santa’s shadow looms pretty large.</p>
<p>Now is the time to start making your list and checking it twice. Start by looking at your holiday keyword and content strategy, building out your gift pages, fixing any leaks in your natural search potential and getting your site ready to rank for potentially the toughest holiday season in decades. Be a good boy / girl now, and you could find yourself with the kinds of gifts we’ve all been asking for all year: Revenue, growth, and a shot at Holiday 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://therangeblog.com/seo/its-beginning-to-look-a-lot-like-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John Greer Coast-to-Coast SEO</title>
		<link>http://therangeblog.com/seo/john-greer-coast-to-coast-seo/</link>
		<comments>http://therangeblog.com/seo/john-greer-coast-to-coast-seo/#comments</comments>
		<pubDate>Fri, 15 May 2009 20:21:51 +0000</pubDate>
		<dc:creator>John Greer</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Best Practices]]></category>
		<category><![CDATA[black box]]></category>
		<category><![CDATA[coast to coast]]></category>
		<category><![CDATA[conspiracy theorists]]></category>
		<category><![CDATA[conspiracy theory]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[html sitemap]]></category>
		<category><![CDATA[john greer]]></category>
		<category><![CDATA[landing pages]]></category>
		<category><![CDATA[matt cutts]]></category>
		<category><![CDATA[monopoly]]></category>
		<category><![CDATA[rankings]]></category>
		<category><![CDATA[search engine results]]></category>
		<category><![CDATA[seo campaign]]></category>
		<category><![CDATA[seo misconceptions]]></category>
		<category><![CDATA[serps]]></category>
		<category><![CDATA[spam cop]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[xml sitemap]]></category>

		<guid isPermaLink="false">http://therangeblog.com/?p=346</guid>
		<description><![CDATA[SEO is great for conspiracy theorists. For starters, it’s monopolistic, with Google gathering more than 70% of US search traffic. It’s also black box, where the only way to learn about how it works is through experience. For most people, it’s a complete mystery and works like magic. Google’s Chief Spam Cop, Matt Cutts, releases just enough information to make the conspiracy all the more believable.]]></description>
			<content:encoded><![CDATA[<p>SEO is great for conspiracy theorists. For starters, it’s monopolistic, with Google gathering more than 70% of US search traffic. It’s also black box, where the only way to learn about how it works is through experience. For most people, it’s a complete mystery and works like magic. Google’s Chief Spam Cop, Matt Cutts, releases just enough information to make the conspiracy all the more believable.</p>
<p>Because of its mysterious nature, people draw a lot of false conclusions about how a web page can rank. For one, there is no magic bullet to ranking. In fact, Google has over a hundred data points it factors into rankings. They usually deliver good results, too, which keep getting better. What that means is that you should focus as much on creating what a visitor would like to see highly ranked, as well as working on SEO tactics.</p>
<p>Some other common misconceptions are:</p>
<ul>
<li><strong>You can’t have a flash(y) site and rank well</strong>. Not so, in fact, you can have a great looking site with graphics and even Flash movies widely used with careful planning. Using CSS techniques and font alternatives you can remove many unnecessary images. Those images that are kept can be thoroughly optimized. Flash movies can also be better optimized and integrated. With that in mind though, stick with text first and add in these elements when they add to the user experience.</li>
<li><strong>Traffic is the measure of an SEO campaign</strong>. While it’s true that a good SEO campaign will drive more traffic, the traffic needs to be qualified. Search phrases with low conversion rates, low bounce rates, and low visitor loyalty rates should be lower priorities than well performing phrases. Additionally, landing pages need to be well designed for conversions as well as capturing search traffic.</li>
<li><strong>A lot of sites assumed an XML sitemap wasn’t important, so long as you have an HTML sitemap on your site.</strong> In fact, Google discovers new pages on a site much faster when an XML sitemap is present and updated frequently. That means your new products start getting traffic quicker.</li>
<li><strong>Ranking well is your goal.</strong> Yes, ranking highly in Yahoo is nice, but is anyone clicking on your listing? Search visitors won’t simply click on the first listing, they will quickly scan some listing before clicking. Your title, description, and URL need to convince a user to click.</li>
<li><strong>SEO just affects your site pages</strong>. While the HTML pages of a site are a huge part of SEO, pages are not the only content appearing in search engine results. Videos, images, PDFs, RSS feeds, Flash movies, and more appear sprinkled throughout search engine results. Including elements like these in your site, and ensuring they are optimized, means more opportunities for your site to appear.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://therangeblog.com/seo/john-greer-coast-to-coast-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wire Your House Before the Wallpaper Goes Up</title>
		<link>http://therangeblog.com/seo/wire-your-house-before-the-wallpaper-goes-up/</link>
		<comments>http://therangeblog.com/seo/wire-your-house-before-the-wallpaper-goes-up/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 20:11:24 +0000</pubDate>
		<dc:creator>Herndon Hasty</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Best Practices]]></category>
		<category><![CDATA[Webinars]]></category>
		<category><![CDATA[Website Usability & Design]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[image navigation]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[search engine friendly]]></category>
		<category><![CDATA[search marketing now]]></category>
		<category><![CDATA[seo webinar]]></category>
		<category><![CDATA[site usability]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[webinar]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[website usability]]></category>

		<guid isPermaLink="false">http://therangeblog.com/?p=258</guid>
		<description><![CDATA[In Range’s recent Search Marketing Now webinar on SEO and Usability, we had a chance to discuss the ways that your site’s usability and natural search potential actually walk hand-in-hand. For anyone who couldn’t attend or can’t listen in to the on-demand version the main takeaway is this: your natural search potential and conversion potential are, in many ways, the same thing. They’re often controlled and helped – or hindered – by the same elements, so don’t be willing to trade one for another.]]></description>
			<content:encoded><![CDATA[<p><strong>Before you ask, no, Google still cannot read flash.</strong> Even though this post has very little to do with whether or not search engines can yet crawl your busy, Flash-based masterpiece, I feel it’s important to reinforce every time I get anywhere near the topic.</p>
<p>What this post <em>is</em> about, however, is the mindset that drives this question: designers and site owners all want a slick interface for their site, built with universal usability for any and all visitors. Technically, this usability is supposed to include search engines, but it’s typically included in a perfunctory way—it’s sort of like sending a wedding invitation to that cousin you never see and barely know. On filigreed cardstock, you really want them to show up, but not as much as say, the <a title="Goodfellas" rel="nofollow" href="http://4.bp.blogspot.com/_4jrewIezLXI/Sd4v67T43lI/AAAAAAAAAA4/xM5unpqojJI/s1600-h/jimmy+conway+at+Henry+Hill%27s+wedding.jpg">family friend who likes to give envelopes full of money to newlyweds</a>. As if that weren’t bad enough, for many site designers, search engine accommodation is a detail they care so little about that they’ll leave it to the search engines and users to bend to them, rather than the other way around.</p>
<p>In Range’s recent <a title="Range Webinar" rel="nofollow" href="http://w.on24.com/r.htm?e=137124&amp;s=1&amp;k=25AF1D3CA727B5482DDE7A2E66D8F236&amp;partnerref=ROM">Search Marketing Now webinar on SEO and Usability</a>, we had a chance to discuss the ways that your site’s usability and natural search potential actually walk hand-in-hand. For anyone who couldn’t attend or can’t listen in to the on-demand version the main takeaway is this: your natural search potential and conversion potential are, in many ways, the same thing. They’re often controlled and helped – or hindered – by the same elements, so don’t be willing to trade one for another.</p>
<p>As we all know, the online world’s rate of evolution increases every day, and there is a certain panicky pressure to be the first to jump on or keep up with the latest technology and techniques. For example, first there were JavaScript tricks, which were later reinvented for Flash and then most recently for AJAX. Each iteration made entirely new web experiences possible while still providing ways to make the same content accessible and clean to standard browsers, screen readers, mobile devices and, of course, search engines. And most new web tools are like that. But nearly every time, these opportunities get ignored in favor of<span style="text-decoration: line-through;"> even more usability-improving technology</span> just not worrying about it, at least un until someone notices that traffic and conversion aren’t what they could be. Then you’re suddenly rushing to build fixes into the system that should have been there in the first place.</p>
<p>Now I’m not saying that you shouldn’t use Flash, or AJAX, or giant navigational images. It doesn’t take much to work with these elements to set yourself up for SEO success, but be aware that the more advanced the technology, the less it takes to doom your site to a comfortable spot on the fifth page of Google results. So what do you do? The solution is a pretty simple paradigm: build your site architecture with all of your users in mind, but ESPECIALLY SEARCH ENGINES. You’ll save yourself a lot of hassles in the long run.<br />
In other words, the next time you’re designing a site, try something crazy: go back to the basics. Plan and design for the least common denominators and construct the simplest but most necessary elements in your site first. Once you’ve taken care of the <span style="text-decoration: line-through;">basics </span>essentials, then you can look for ways to layer in the bells and whistles everyone’s drooling over – as long as those basic elements aren’t affected.</p>
<p>This is how you build for SEO and for usability without having to go through costly and time-sucking changes later. It’s also the way to wire your house for electricity without having to tear out drywall: <em>Do it before the drywall goes up!</em><br />
To sum:</p>
<blockquote><p>1. Your SEO and usability are affected by the same things – don’t sacrifice one for another.<br />
2. Designing and building with all your users in mind is the way to thread this particular needle.</p></blockquote>
<p>And no, Flash still isn’t readable, but you’ll hear it here first if that ever happens.</p>
]]></content:encoded>
			<wfw:commentRss>http://therangeblog.com/seo/wire-your-house-before-the-wallpaper-goes-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
