<?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>SEO 2.0 &#187; Findability</title>
	<atom:link href="http://seo2.0.onreact.com/category/findability/feed" rel="self" type="application/rss+xml" />
	<link>http://seo2.0.onreact.com</link>
	<description>Search &#38; Social Media Survival Guide</description>
	<lastBuildDate>Fri, 10 Feb 2012 14:30:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to Remove utm_source &amp; Other Parameters From Your URLs</title>
		<link>http://seo2.0.onreact.com/how-to-remove-utm_source-other-parameters-from-your-urls</link>
		<comments>http://seo2.0.onreact.com/how-to-remove-utm_source-other-parameters-from-your-urls#comments</comments>
		<pubDate>Sun, 12 Dec 2010 14:43:18 +0000</pubDate>
		<dc:creator>Tadeusz Szewczyk</dc:creator>
				<category><![CDATA[Findability]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://seo2.0.onreact.com/?p=1708</guid>
		<description><![CDATA[<p>These days it&#8217;s a quite common and very annoying habit by a few services to attach <strong>utm_source</strong> and other <em>parameters</em> to your internet address aka URL. It&#8217;s not only that.</p>
<blockquote><p>Basically anybody can add anything as an parameter to your URL and make it appear as if it&#8217;s part of your blog or site.</p></blockquote>
<p>Just try adding</p>
<ul>
<li>&#8220;?gay-porn&#8221;</li>
<li> &#8220;?obama=muslim&#8221;</li>
<li> &#8220;?you-suck&#8221;</li>
</ul>
<p>to any of your URLs or other sites&#8217; URLs. Most sites accept that without even showing an error &#8220;not found&#8221;.</p>
<blockquote><p>In case you link such an URL Google would even index it. So you can make Google show up fake URLs on other people&#8217;s websites this way.</p></blockquote>
<p><em>Also unwanted parameters break a lot of things SEO-wise</em>. You get unlimited <strong>duplicate content</strong> this way. People bookmark the wrong (polluted) URLs on Delicious and elsewhere and thus you lose juice on social media.</p>
<p><em>Who adds utm_source to your URLs and why?</em></p>
<p>utm_source is added by multiple services in order to get tracked in Google Analytics. You get inflated numbers on Google Analytics though. That&#8217;s why I do not recommend adding such parameters to your URLs in the first place. For instance when I click an URL on Delicious which is tagged utm_source=feedburner it gets wrongly counted as stemming from Feedburner and not Delicious as the Delicious bookmark is still tagged as Feedburner and not Delicious.</p>
<p>Also as I said before the bookmarks on Delicious do not add up. It means that maybe 30 people bookmark the Feedburner tagged URL. 30 others bookmark a Twitter tagged URL for the same post and a few dozens others bookmark the original URL. Thus your post doesn&#8217;t show up in popular lists.</p>
<p>You can prevent Feedburner from adding the utm_source crap but that&#8217;s not enough to remove all other unwanted parameters from your URL. Thus I wrote this tiny script in <strong>JavaScript</strong> you can add to your WordPress blog anywhere in the header:</p>
<p><code><br />
&lt;script language="JavaScript" type="text/javascript"&gt;<br />
&lt;!--<br />
var url = self.location.href;<br />
var p = url.indexOf("?");<br />
var str = url;<br />
var parameter = str.slice(p);<br />
if (p &gt;= 1 &amp;&amp; parameter.indexOf("p") != 1 </code><code>&amp;&amp; parameter.indexOf("s") != 1</code><code>)<br />
{<br />
url = str.slice(0,p);<br />
self.location.replace(url);<br />
}<br />
//--&gt;<br />
&lt;/script&gt;<br />
</code></p>
<p>I know it&#8217;s quite redundant and not very elegant but my JavaScript skills haven&#8217;t been used much in the last decade so you are welcome to customize it.</p>
<blockquote><p>The script basically checks where the parameter starts and removes everything from the URL including the question mark &#8220;?&#8221;</p></blockquote>
<p>which signifies the start of the parameters. It then redirects visitors on the client-side to the accurate URL without parameter crap in the address.</p>
<p>So in the end your visitor ends up on the actual URL s/he should end up from the beginning but someone else prevented them due polluting the URL with parameter spam.</p>
<blockquote><p>The only acceptable parameters are the &#8220;p&#8221; so that you can still use the post preview function in your WordPress and &#8220;s&#8221; for the search function.</p></blockquote>
<p>I&#8217;ve added the script to SEO 2.0 already so a link like this one should get redirected: <a href="http://seo2.0.onreact.com/?you-suck">http://seo2.0.onreact.com/?you-suck</a></p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=1708&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/user-and-search-friendly-url-design-for-multi-language-websites-in-4-easy-steps' rel='bookmark' title='User and Search Friendly URL Design for Multi-Language Websites in 4 Easy Steps'>User and Search Friendly URL Design for Multi-Language Websites in 4 Easy Steps</a></li>
<li><a href='http://seo2.0.onreact.com/how-to-create-a-dynamic-blogroll-in-5-minutes' rel='bookmark' title='How to Create a Dynamic Blogroll in 5 Minutes'>How to Create a Dynamic Blogroll in 5 Minutes</a></li>
<li><a href='http://seo2.0.onreact.com/top-10-fatal-url-design-mistakes' rel='bookmark' title='Top 10 Fatal URL Design Mistakes'>Top 10 Fatal URL Design Mistakes</a></li>
</ol></p><div style="display:block"><small><em>by Tadeusz Szewczyk <br />&copy;2012 <a href="http://seo2.0.onreact.com">SEO 2.0</a>. All Rights Reserved.Copyright SEO 2.0 at onreact.com</em></small></div>


Related posts:<ol><li><a href='http://seo2.0.onreact.com/user-and-search-friendly-url-design-for-multi-language-websites-in-4-easy-steps' rel='bookmark' title='User and Search Friendly URL Design for Multi-Language Websites in 4 Easy Steps'>User and Search Friendly URL Design for Multi-Language Websites in 4 Easy Steps</a></li>
<li><a href='http://seo2.0.onreact.com/how-to-create-a-dynamic-blogroll-in-5-minutes' rel='bookmark' title='How to Create a Dynamic Blogroll in 5 Minutes'>How to Create a Dynamic Blogroll in 5 Minutes</a></li>
<li><a href='http://seo2.0.onreact.com/top-10-fatal-url-design-mistakes' rel='bookmark' title='Top 10 Fatal URL Design Mistakes'>Top 10 Fatal URL Design Mistakes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>These days it&#8217;s a quite common and very annoying habit by a few services to attach <strong>utm_source</strong> and other <em>parameters</em> to your internet address aka URL. It&#8217;s not only that.</p>
<blockquote><p>Basically anybody can add anything as an parameter to your URL and make it appear as if it&#8217;s part of your blog or site.</p></blockquote>
<p>Just try adding</p>
<ul>
<li>&#8220;?gay-porn&#8221;</li>
<li> &#8220;?obama=muslim&#8221;</li>
<li> &#8220;?you-suck&#8221;</li>
</ul>
<p>to any of your URLs or other sites&#8217; URLs. Most sites accept that without even showing an error &#8220;not found&#8221;.</p>
<blockquote><p>In case you link such an URL Google would even index it. So you can make Google show up fake URLs on other people&#8217;s websites this way.</p></blockquote>
<p><em>Also unwanted parameters break a lot of things SEO-wise</em>. You get unlimited <strong>duplicate content</strong> this way. People bookmark the wrong (polluted) URLs on Delicious and elsewhere and thus you lose juice on social media.</p>
<p><em>Who adds utm_source to your URLs and why?</em></p>
<p>utm_source is added by multiple services in order to get tracked in Google Analytics. You get inflated numbers on Google Analytics though. That&#8217;s why I do not recommend adding such parameters to your URLs in the first place. For instance when I click an URL on Delicious which is tagged utm_source=feedburner it gets wrongly counted as stemming from Feedburner and not Delicious as the Delicious bookmark is still tagged as Feedburner and not Delicious.</p>
<p>Also as I said before the bookmarks on Delicious do not add up. It means that maybe 30 people bookmark the Feedburner tagged URL. 30 others bookmark a Twitter tagged URL for the same post and a few dozens others bookmark the original URL. Thus your post doesn&#8217;t show up in popular lists.</p>
<p>You can prevent Feedburner from adding the utm_source crap but that&#8217;s not enough to remove all other unwanted parameters from your URL. Thus I wrote this tiny script in <strong>JavaScript</strong> you can add to your WordPress blog anywhere in the header:</p>
<p><code><br />
&lt;script language="JavaScript" type="text/javascript"&gt;<br />
&lt;!--<br />
var url = self.location.href;<br />
var p = url.indexOf("?");<br />
var str = url;<br />
var parameter = str.slice(p);<br />
if (p &gt;= 1 &amp;&amp; parameter.indexOf("p") != 1 </code><code>&amp;&amp; parameter.indexOf("s") != 1</code><code>)<br />
{<br />
url = str.slice(0,p);<br />
self.location.replace(url);<br />
}<br />
//--&gt;<br />
&lt;/script&gt;<br />
</code></p>
<p>I know it&#8217;s quite redundant and not very elegant but my JavaScript skills haven&#8217;t been used much in the last decade so you are welcome to customize it.</p>
<blockquote><p>The script basically checks where the parameter starts and removes everything from the URL including the question mark &#8220;?&#8221;</p></blockquote>
<p>which signifies the start of the parameters. It then redirects visitors on the client-side to the accurate URL without parameter crap in the address.</p>
<p>So in the end your visitor ends up on the actual URL s/he should end up from the beginning but someone else prevented them due polluting the URL with parameter spam.</p>
<blockquote><p>The only acceptable parameters are the &#8220;p&#8221; so that you can still use the post preview function in your WordPress and &#8220;s&#8221; for the search function.</p></blockquote>
<p>I&#8217;ve added the script to SEO 2.0 already so a link like this one should get redirected: <a href="http://seo2.0.onreact.com/?you-suck">http://seo2.0.onreact.com/?you-suck</a></p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=1708&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/user-and-search-friendly-url-design-for-multi-language-websites-in-4-easy-steps' rel='bookmark' title='User and Search Friendly URL Design for Multi-Language Websites in 4 Easy Steps'>User and Search Friendly URL Design for Multi-Language Websites in 4 Easy Steps</a></li>
<li><a href='http://seo2.0.onreact.com/how-to-create-a-dynamic-blogroll-in-5-minutes' rel='bookmark' title='How to Create a Dynamic Blogroll in 5 Minutes'>How to Create a Dynamic Blogroll in 5 Minutes</a></li>
<li><a href='http://seo2.0.onreact.com/top-10-fatal-url-design-mistakes' rel='bookmark' title='Top 10 Fatal URL Design Mistakes'>Top 10 Fatal URL Design Mistakes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seo2.0.onreact.com/how-to-remove-utm_source-other-parameters-from-your-urls/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>How to Get Links on SEO 2.0 and Other Blogs</title>
		<link>http://seo2.0.onreact.com/how-to-get-links-on-seo-2-0-and-other-blogs</link>
		<comments>http://seo2.0.onreact.com/how-to-get-links-on-seo-2-0-and-other-blogs#comments</comments>
		<pubDate>Wed, 06 Oct 2010 13:56:04 +0000</pubDate>
		<dc:creator>Tadeusz Szewczyk</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Definitions]]></category>
		<category><![CDATA[Empowerment]]></category>
		<category><![CDATA[Findability]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO 2.0]]></category>

		<guid isPermaLink="false">http://seo2.0.onreact.com/?p=1410</guid>
		<description><![CDATA[<p><a href="http://seo2.0.onreact.com/wp-content/uploads/2010/10/node-uqbar.jpg"><img class="alignnone size-full wp-image-1413" title="node-uqbar" src="http://seo2.0.onreact.com/wp-content/uploads/2010/10/node-uqbar.jpg" alt="" width="500" height="333" /></a></p>
<p>Image: Node by <a href="http://www.flickr.com/photos/78603183@N00/114320354/" target="_blank">Uqbar</a>.</p>
<p id="zw-12b62cd047aOOpmMj50324">As  both business blogger and SEO am I aware of both sides of &#8220;link  building&#8221;. I get lots of spammy comments from Asian &#8220;blog commenting  services&#8221; but</p>
<p><em>I also appreciate blog comments by fellow SEO  practicioners</em>, I mean real people with a name in the SEO industry. I blog for clients about other topics as well, topics not related to SEO and I&#8217;ve been blogging privately since 2003.</p>
<p id="zw-12b62cf850atwPDkY50324">While SEO 2.0 has been around for years, many people still practice low  quality link building techniques like worthless blog commenting for the sheer number of anchor-text rich links.</p>
<blockquote>
<p id="zw-12b62d08485gnZbl50324">In SEO 2.0 we don&#8217;t build links, we get links.</p>
</blockquote>
<p>That means that you don&#8217;t  have to force your link upon others. Others give you a link out of their  own accord. In fact they are often glad to link to you. That&#8217;s one of  the most important <a href="http://seo2.0.onreact.com/seo-vs-seo-20-top-15-differences">differences between SEO 2.0 and conventional SEO</a>.</p>
<p id="zw-12b62d1ac2esV8yNR50324">You  may call it social SEO, SMSEO, findability, inbound marketing or SEO  2.0 &#8211; the long term strategy these days is the same: <em>Make people link to you.</em></p>
<p id="zw-12b62d2835ca0OHqc50324">You can&#8217;t make people link to you by being an ass or just ass kissing. You can, but that only works sporadically.</p>
<blockquote><p>Getting links SEO 2.0 style is convincing other people that you are worth it.</p></blockquote>
<p>Once you have convinced them they will link to you again and again. That&#8217;s the whole secret.</p>
<p id="zw-12b62d4594bsN50xL50324">I have covered the basics of getting links a few times already. This time  I want to focus on <strong>how to get links from blogs</strong>. I will use an example  close to home, this blog here, <em>SEO 2.0</em></p>
<p id="zw-12b62d555d9w33U950324"><br id="zw-12b62d5ded2oHbWeo50324" /></p>
<p id="zw-12b62d5ded1FO1JtC50324"><strong>Blog Commenting</strong></p>
<p id="zw-12b72f762dc0Hd5yW50324">Just add a meaningful comment here, saying something more than &#8220;thank you,  great post&#8221;. Do it three times and your link will be &#8220;dofollow&#8221;. Add a  link to an additional resource (not necessarily your own) and you get  credited in the post itself with an extra link to your site. That&#8217;s not  that difficult. It doesn&#8217;t work of course if you offer services like  &#8220;200 links for 10$&#8221;. Then just f*#k off. Many bloggers are grateful when  you add value in the comments. Some will even credit a whole post to you.</p>
<p id="zw-12b62d6b79506gPdg50324"><strong>Pinging</strong></p>
<p id="zw-12b72fa0f8dmv4ttV50324">In  case you use a WordPress blog you can easily notify me that you have  published a post that links to me. It works automatically unless you  have switched it off. I consider to make all pingbacks dofollow. Some  other blogs already do. Their comments are nofollow but their pingbacks  (and trackbacks) are real links. Of course, like above, you can end up  linked as an additional resource in the editorial part of the post  itself. Moreover I will check out your blog and know about you. This might be a beginning of a link love relationship.</p>
<p id="zw-12b62d5ef8cmIO77v50324"><strong>Guest Posting</strong></p>
<p id="zw-12b72fd4d3c5ZxqeH50324">Guest  posting is highly popular these days. Some friends of mine even offer  services for guest bloggers. I&#8217;ve written down my guest blogging  guidelines just a while ago. Most bloggers either actively seek out  guest postings or are open minded enough to publish them when  approached.</p>
<p>Make sure to read the blog first and find out what favorite  topics the blogger has, what kind of audience s/he attracts and how  their writing style sounds. For instance some people want to publish  posts o SEO 2.0 that explain SEO basics in an article directory style of  writing. I can&#8217;t publish that.</p>
<p>People reading SEO 2.0 expect advanced  SEO and a juicy language. They don&#8217;t want to get bored with another  &#8220;content is king&#8221;, &#8220;what is SEO&#8221; or &#8220;on page optimization basics&#8221; posts.</p>
<p id="zw-12b62d61ae6Hplf2q50324"><strong>Interviews</strong></p>
<p id="zw-12b730a5f99GZ8C_o50324">Sometimes  an interview is the best way to deal with a certain type of news. I  publish interviews whenever I can and I can more often than I am able to  write a post myself. After all, for interviews I only need to write the  questions. Just look at the people I&#8217;ve interviewed in the past:  Patrick Gavin of DIYSEO, Steven Snell of Vandelay Design, Frances Mary Krug of  Search Marketing Standard. They may not be the superstars of search,  social media and blogging but they have dome something important and  they are around for a while.</p>
<p>Be around for a while as well and when the  time comes to launch something or a newsworthy event will happen I will  be glad to interview you instead of rehashing the news everybody else  has covered already.</p>
<p>Many bloggers do interviews. In the SEO industry  SEO Book and Search Engine People do for instance. These are some of the  best authority links you can get. Don&#8217;t approach me wanting to get  interviewed when I have never before heard of you.<br />
</p>
</p>
<p id="zw-12b62d62b91JWdlKg50324"><strong>Doing Something Linkable</strong></p>
<p id="zw-12b7301dfc103hr1w50324">Do  something linkable aka remarkable. Just think about architecture and  green blogs. Architecture blogs write about new buildings built by  architects mostly. Green blogs mention seemingly each and every project  that is a hope for a more environmentally friendly future. Even the most  obscure endeavor get publicity there. Te more bizarre the more  attention it gets on social media.</p>
<p>I will feature more of such news  aboout the growing SEO industry. In other niches it&#8217;s already common  place as my examples show. Also doing somthing remarkable makes you a  more interesting interview partner.</p>
<p id="zw-12b7302342ce-kwGs50324">
<p id="zw-12b62d7b4ba4STRN50324"><strong>Creating A WordPress Plugin</strong></p>
<p id="zw-12b730f39e7KBjzxd50324">Do  you know the LinkWithin related posts plugin? It&#8217;s not even a plugin,  it&#8217;s more of a widget. It has PageRank 7 so speak in old school SEO  terms and an incredible amount of link. Just check it with your favorite  tool like Open Site Explorer, Majectic SEO or Blekko. It&#8217;s not even  good at finding related posts, they barely match the topic of each post.  Still myriads of blogs use it. This is probably the best case  study of how the SEO 2.0 way of getting links overtrumps the tedious  &#8220;link building&#8221;.</p>
<p>Create a better one and you&#8217;ll get even more links.  Many attempted this with social media buttons but this is already a crowded market. I&#8217;d use a good related posts plugin with image preview  but haven&#8217;t found a perfect one yet.</p>
<p id="zw-12b730d7dd7a8nQQ50324">
<p id="zw-12b62d7e15buRYD4P50324"><strong>Directory Inclusion</strong></p>
<p id="zw-12b81aa3a3fKSuiYG50324">Some  of the most important blogs out there, think TechCrunch e.g. have their  own directories. You have probably noticed, I have added a directory  section on SEO 2.0 as well. You can&#8217;t submit your site to it. It&#8217;s a  very <a href="http://seo2.0.onreact.com/category/seo-directory">high quality niche SEO directory</a>. I will only add SEO service  providers I already know, trust and can recommend. Be it SEO companies,  SEO bloggers, SEO software vendors or whomever fits in. I have added some of <a href="http://seo2.0.onreact.com/category/seo-directory/seo-company">my favorite SEO companies</a> to it already, many more will follow. There is a paid option as well for those who are eligible in the first place.</p>
<p id="zw-12b81b3eeb7wJvyvH50324">In  case I know you already you may get a paid directory entry with highly  optimized title, headline, description and contact info.  It includes up to 5 meaningful links for users ans search engines alike no &#8220;click here&#8221; crap. Search for [Relentless Technology] to see their entry on #3 for their name. The basic entry is free but as I said I  don&#8217;t accept submissions.</p>
<p>How do you know that I know you? Well, have I  linked to you in the past here or on SEOptimise? Are you on <a href="http://twitter.com/onreact_com/seo-companies" target="_blank">this  Twitter list</a> or <a href="http://www.delicious.com/onreact.com/bswd" target="_blank">tagged best SEO website design here on Delicious</a>? Do I follow you on LinkedIn?</p>
<p id="zw-12b81b0fb33-u1CZU50324">Other search marketing blogs offer directories as well: just check out the <a href="http://www.seomoz.org/marketplace/companies" target="_blank">SEOmoz</a>, <a href="http://econsultancy.com/uk/directories/suppliers" target="_blank">Econsultancy</a> and <a href="http://www.blogstorm.co.uk/dir/" target="_blank">Blogstorm</a> directories.</p>
<p id="zw-12b81b69d53ReIV6J50324">
<p id="zw-12b81b69de2JmymPH50324">
<p id="zw-12b81b69e8b50vJ250324">What  else can you do? Focus on getting links instead of building links.  Getting links means you get them almost as a side effect. You don&#8217;t  submit somewhere.</p>
<blockquote><p>The best links are those you deserve not those you build manually.</p></blockquote>
<p>Change your approach. As a die hard old school you won&#8217;t get links. It&#8217;s  not 2004 anymore.</p>
<p>Offsite SEO is similar to having sex, either you do it yourself  (link building), you pay for it (paid links) or you invest in  relationships so that you&#8217;ll get it forever for free (getting links as in  SEO 2.0)!</p>
<p id="zw-12b62d6560aFvkpz650324"><br id="zw-12b62dba8c4lPhOq_50324" /></p>
<p id="zw-12b62dba8c3luKgR50324"><br id="zw-12b62dba8c3NACIRR50324" /></p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=1410&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/guest-blogging-guidelines' rel='bookmark' title='Guest Blogging Guidelines'>Guest Blogging Guidelines</a></li>
<li><a href='http://seo2.0.onreact.com/commenting-on-dofollow-blogs-as-a-link-building-strategy' rel='bookmark' title='Commenting on Dofollow-Blogs as a Link Building Strategy'>Commenting on Dofollow-Blogs as a Link Building Strategy</a></li>
<li><a href='http://seo2.0.onreact.com/7-stealth-publish-for-wordpress-uses-to-consider' rel='bookmark' title='7 Stealth Publish for WordPress Uses to Consider'>7 Stealth Publish for WordPress Uses to Consider</a></li>
</ol></p><div style="display:block"><small><em>by Tadeusz Szewczyk <br />&copy;2012 <a href="http://seo2.0.onreact.com">SEO 2.0</a>. All Rights Reserved.Copyright SEO 2.0 at onreact.com</em></small></div>


Related posts:<ol><li><a href='http://seo2.0.onreact.com/guest-blogging-guidelines' rel='bookmark' title='Guest Blogging Guidelines'>Guest Blogging Guidelines</a></li>
<li><a href='http://seo2.0.onreact.com/commenting-on-dofollow-blogs-as-a-link-building-strategy' rel='bookmark' title='Commenting on Dofollow-Blogs as a Link Building Strategy'>Commenting on Dofollow-Blogs as a Link Building Strategy</a></li>
<li><a href='http://seo2.0.onreact.com/7-stealth-publish-for-wordpress-uses-to-consider' rel='bookmark' title='7 Stealth Publish for WordPress Uses to Consider'>7 Stealth Publish for WordPress Uses to Consider</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://seo2.0.onreact.com/wp-content/uploads/2010/10/node-uqbar.jpg"><img class="alignnone size-full wp-image-1413" title="node-uqbar" src="http://seo2.0.onreact.com/wp-content/uploads/2010/10/node-uqbar.jpg" alt="" width="500" height="333" /></a></p>
<p>Image: Node by <a href="http://www.flickr.com/photos/78603183@N00/114320354/" target="_blank">Uqbar</a>.</p>
<p id="zw-12b62cd047aOOpmMj50324">As  both business blogger and SEO am I aware of both sides of &#8220;link  building&#8221;. I get lots of spammy comments from Asian &#8220;blog commenting  services&#8221; but</p>
<p><em>I also appreciate blog comments by fellow SEO  practicioners</em>, I mean real people with a name in the SEO industry. I blog for clients about other topics as well, topics not related to SEO and I&#8217;ve been blogging privately since 2003.</p>
<p id="zw-12b62cf850atwPDkY50324">While SEO 2.0 has been around for years, many people still practice low  quality link building techniques like worthless blog commenting for the sheer number of anchor-text rich links.</p>
<blockquote>
<p id="zw-12b62d08485gnZbl50324">In SEO 2.0 we don&#8217;t build links, we get links.</p>
</blockquote>
<p>That means that you don&#8217;t  have to force your link upon others. Others give you a link out of their  own accord. In fact they are often glad to link to you. That&#8217;s one of  the most important <a href="http://seo2.0.onreact.com/seo-vs-seo-20-top-15-differences">differences between SEO 2.0 and conventional SEO</a>.</p>
<p id="zw-12b62d1ac2esV8yNR50324">You  may call it social SEO, SMSEO, findability, inbound marketing or SEO  2.0 &#8211; the long term strategy these days is the same: <em>Make people link to you.</em></p>
<p id="zw-12b62d2835ca0OHqc50324">You can&#8217;t make people link to you by being an ass or just ass kissing. You can, but that only works sporadically.</p>
<blockquote><p>Getting links SEO 2.0 style is convincing other people that you are worth it.</p></blockquote>
<p>Once you have convinced them they will link to you again and again. That&#8217;s the whole secret.</p>
<p id="zw-12b62d4594bsN50xL50324">I have covered the basics of getting links a few times already. This time  I want to focus on <strong>how to get links from blogs</strong>. I will use an example  close to home, this blog here, <em>SEO 2.0</em></p>
<p id="zw-12b62d555d9w33U950324"><br id="zw-12b62d5ded2oHbWeo50324" /></p>
<p id="zw-12b62d5ded1FO1JtC50324"><strong>Blog Commenting</strong></p>
<p id="zw-12b72f762dc0Hd5yW50324">Just add a meaningful comment here, saying something more than &#8220;thank you,  great post&#8221;. Do it three times and your link will be &#8220;dofollow&#8221;. Add a  link to an additional resource (not necessarily your own) and you get  credited in the post itself with an extra link to your site. That&#8217;s not  that difficult. It doesn&#8217;t work of course if you offer services like  &#8220;200 links for 10$&#8221;. Then just f*#k off. Many bloggers are grateful when  you add value in the comments. Some will even credit a whole post to you.</p>
<p id="zw-12b62d6b79506gPdg50324"><strong>Pinging</strong></p>
<p id="zw-12b72fa0f8dmv4ttV50324">In  case you use a WordPress blog you can easily notify me that you have  published a post that links to me. It works automatically unless you  have switched it off. I consider to make all pingbacks dofollow. Some  other blogs already do. Their comments are nofollow but their pingbacks  (and trackbacks) are real links. Of course, like above, you can end up  linked as an additional resource in the editorial part of the post  itself. Moreover I will check out your blog and know about you. This might be a beginning of a link love relationship.</p>
<p id="zw-12b62d5ef8cmIO77v50324"><strong>Guest Posting</strong></p>
<p id="zw-12b72fd4d3c5ZxqeH50324">Guest  posting is highly popular these days. Some friends of mine even offer  services for guest bloggers. I&#8217;ve written down my guest blogging  guidelines just a while ago. Most bloggers either actively seek out  guest postings or are open minded enough to publish them when  approached.</p>
<p>Make sure to read the blog first and find out what favorite  topics the blogger has, what kind of audience s/he attracts and how  their writing style sounds. For instance some people want to publish  posts o SEO 2.0 that explain SEO basics in an article directory style of  writing. I can&#8217;t publish that.</p>
<p>People reading SEO 2.0 expect advanced  SEO and a juicy language. They don&#8217;t want to get bored with another  &#8220;content is king&#8221;, &#8220;what is SEO&#8221; or &#8220;on page optimization basics&#8221; posts.</p>
<p id="zw-12b62d61ae6Hplf2q50324"><strong>Interviews</strong></p>
<p id="zw-12b730a5f99GZ8C_o50324">Sometimes  an interview is the best way to deal with a certain type of news. I  publish interviews whenever I can and I can more often than I am able to  write a post myself. After all, for interviews I only need to write the  questions. Just look at the people I&#8217;ve interviewed in the past:  Patrick Gavin of DIYSEO, Steven Snell of Vandelay Design, Frances Mary Krug of  Search Marketing Standard. They may not be the superstars of search,  social media and blogging but they have dome something important and  they are around for a while.</p>
<p>Be around for a while as well and when the  time comes to launch something or a newsworthy event will happen I will  be glad to interview you instead of rehashing the news everybody else  has covered already.</p>
<p>Many bloggers do interviews. In the SEO industry  SEO Book and Search Engine People do for instance. These are some of the  best authority links you can get. Don&#8217;t approach me wanting to get  interviewed when I have never before heard of you.<br />
</p>
</p>
<p id="zw-12b62d62b91JWdlKg50324"><strong>Doing Something Linkable</strong></p>
<p id="zw-12b7301dfc103hr1w50324">Do  something linkable aka remarkable. Just think about architecture and  green blogs. Architecture blogs write about new buildings built by  architects mostly. Green blogs mention seemingly each and every project  that is a hope for a more environmentally friendly future. Even the most  obscure endeavor get publicity there. Te more bizarre the more  attention it gets on social media.</p>
<p>I will feature more of such news  aboout the growing SEO industry. In other niches it&#8217;s already common  place as my examples show. Also doing somthing remarkable makes you a  more interesting interview partner.</p>
<p id="zw-12b7302342ce-kwGs50324">
<p id="zw-12b62d7b4ba4STRN50324"><strong>Creating A WordPress Plugin</strong></p>
<p id="zw-12b730f39e7KBjzxd50324">Do  you know the LinkWithin related posts plugin? It&#8217;s not even a plugin,  it&#8217;s more of a widget. It has PageRank 7 so speak in old school SEO  terms and an incredible amount of link. Just check it with your favorite  tool like Open Site Explorer, Majectic SEO or Blekko. It&#8217;s not even  good at finding related posts, they barely match the topic of each post.  Still myriads of blogs use it. This is probably the best case  study of how the SEO 2.0 way of getting links overtrumps the tedious  &#8220;link building&#8221;.</p>
<p>Create a better one and you&#8217;ll get even more links.  Many attempted this with social media buttons but this is already a crowded market. I&#8217;d use a good related posts plugin with image preview  but haven&#8217;t found a perfect one yet.</p>
<p id="zw-12b730d7dd7a8nQQ50324">
<p id="zw-12b62d7e15buRYD4P50324"><strong>Directory Inclusion</strong></p>
<p id="zw-12b81aa3a3fKSuiYG50324">Some  of the most important blogs out there, think TechCrunch e.g. have their  own directories. You have probably noticed, I have added a directory  section on SEO 2.0 as well. You can&#8217;t submit your site to it. It&#8217;s a  very <a href="http://seo2.0.onreact.com/category/seo-directory">high quality niche SEO directory</a>. I will only add SEO service  providers I already know, trust and can recommend. Be it SEO companies,  SEO bloggers, SEO software vendors or whomever fits in. I have added some of <a href="http://seo2.0.onreact.com/category/seo-directory/seo-company">my favorite SEO companies</a> to it already, many more will follow. There is a paid option as well for those who are eligible in the first place.</p>
<p id="zw-12b81b3eeb7wJvyvH50324">In  case I know you already you may get a paid directory entry with highly  optimized title, headline, description and contact info.  It includes up to 5 meaningful links for users ans search engines alike no &#8220;click here&#8221; crap. Search for [Relentless Technology] to see their entry on #3 for their name. The basic entry is free but as I said I  don&#8217;t accept submissions.</p>
<p>How do you know that I know you? Well, have I  linked to you in the past here or on SEOptimise? Are you on <a href="http://twitter.com/onreact_com/seo-companies" target="_blank">this  Twitter list</a> or <a href="http://www.delicious.com/onreact.com/bswd" target="_blank">tagged best SEO website design here on Delicious</a>? Do I follow you on LinkedIn?</p>
<p id="zw-12b81b0fb33-u1CZU50324">Other search marketing blogs offer directories as well: just check out the <a href="http://www.seomoz.org/marketplace/companies" target="_blank">SEOmoz</a>, <a href="http://econsultancy.com/uk/directories/suppliers" target="_blank">Econsultancy</a> and <a href="http://www.blogstorm.co.uk/dir/" target="_blank">Blogstorm</a> directories.</p>
<p id="zw-12b81b69d53ReIV6J50324">
<p id="zw-12b81b69de2JmymPH50324">
<p id="zw-12b81b69e8b50vJ250324">What  else can you do? Focus on getting links instead of building links.  Getting links means you get them almost as a side effect. You don&#8217;t  submit somewhere.</p>
<blockquote><p>The best links are those you deserve not those you build manually.</p></blockquote>
<p>Change your approach. As a die hard old school you won&#8217;t get links. It&#8217;s  not 2004 anymore.</p>
<p>Offsite SEO is similar to having sex, either you do it yourself  (link building), you pay for it (paid links) or you invest in  relationships so that you&#8217;ll get it forever for free (getting links as in  SEO 2.0)!</p>
<p id="zw-12b62d6560aFvkpz650324"><br id="zw-12b62dba8c4lPhOq_50324" /></p>
<p id="zw-12b62dba8c3luKgR50324"><br id="zw-12b62dba8c3NACIRR50324" /></p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=1410&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/guest-blogging-guidelines' rel='bookmark' title='Guest Blogging Guidelines'>Guest Blogging Guidelines</a></li>
<li><a href='http://seo2.0.onreact.com/commenting-on-dofollow-blogs-as-a-link-building-strategy' rel='bookmark' title='Commenting on Dofollow-Blogs as a Link Building Strategy'>Commenting on Dofollow-Blogs as a Link Building Strategy</a></li>
<li><a href='http://seo2.0.onreact.com/7-stealth-publish-for-wordpress-uses-to-consider' rel='bookmark' title='7 Stealth Publish for WordPress Uses to Consider'>7 Stealth Publish for WordPress Uses to Consider</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seo2.0.onreact.com/how-to-get-links-on-seo-2-0-and-other-blogs/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Why People Hate Ads and Love SEO</title>
		<link>http://seo2.0.onreact.com/why-people-hate-ads-and-love-seo</link>
		<comments>http://seo2.0.onreact.com/why-people-hate-ads-and-love-seo#comments</comments>
		<pubDate>Wed, 07 Jul 2010 08:34:50 +0000</pubDate>
		<dc:creator>Tadeusz Szewczyk</dc:creator>
				<category><![CDATA[Empowerment]]></category>
		<category><![CDATA[Findability]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO 2.0]]></category>

		<guid isPermaLink="false">http://seo2.0.onreact.com/?p=1140</guid>
		<description><![CDATA[<p><!-- table { font-size: 10pt;} --></p>
<p id="zw-129abe63e79PyM5IK50324"><a href="http://seo2.0.onreact.com/wp-content/uploads/2010/07/love-jmscottIMD.jpg"><img class="alignnone size-full wp-image-1141" title="love-jmscottIMD" src="http://seo2.0.onreact.com/wp-content/uploads/2010/07/love-jmscottIMD.jpg" alt="" width="500" height="333" /></a></p>
<p>Love by <a href="http://www.flickr.com/photos/jmscottimd/616642026/" target="_blank">jimscottIMD</a>.</p>
<p id="zw-129abe667b2NMT3zp50324">I hate ads. I&#8217;m  not the only one. Most people hate annoying ads. People hate ads on the  Web and block them using a plethora of tools. They also hate outdoor ads  and TV ads. They hate them</p>
<ul id="zw-129abfd3bcfhTfwDt50324">
<li id="zw-129abfd3bd3jRQv8j50324">for  the interruption</li>
<li id="zw-129abfd3bd8M4v2Uk50324">for the blatant lies <br id="zw-129abfd3bdb5fVFzN50324" /></li>
<li id="zw-129abfd3bdc6gzIdz50324">for the selling of fake lifestyles <br id="zw-129abfd3bdeU9hHS650324" /></li>
</ul>
<p id="zw-129abfd315ajvGO1q50324">we are meant to  aspire to and we can never reach in most cases.</p>
<p id="zw-129abfd13b3B-w8tB50324">They hate ads for  shouting at them.</p>
<blockquote>
<p id="zw-129abfd75f1bnVpcA50324">People hate ads for selling them  something they don&#8217;t want when they don&#8217;t want to be sold to.<br id="zw-129abfd866dhezyGR50324" /></p>
</blockquote>
<p id="zw-129abe7dc44LNlYin50324">That&#8217;s also the  reason why people love SEO.</p>
<p id="zw-129abe812daaQtkiN50324">People love SEO? This guy must be joking you think. Isn&#8217;t  SEO the most detested pariah on the Internet? No.</p>
<p id="zw-129abe8d8cecB4Ki250324">People don&#8217;t hate  web hosting or web design. Likewise people don&#8217;t hate SEO. People hate  bad web hosting, bad web design and they hate bad SEO.</p>
<p id="zw-129abeac12aBT_ttH50324">People hate  servers that go down and sites they can&#8217;t access. People hate awful user  experience on cluttered portal like sites. That&#8217;s why Google succeeded  with a clean interface. Also people hate spammy low-quality SEO  implemented by webmasters who have barely an understanding of search and  user experience.</p>
<p id="zw-129abeb8f5c1TY86x50324">I&#8217;ve said it  before:</p>
<blockquote>
<p id="zw-129abfe2db6zfBmfg50324">Good SEO is invisible. <br id="zw-129abfe451eBcip1n50324" /></p>
</blockquote>
<p id="zw-129abfe3482m4F9xW50324">People only hate  SEO they can see and recognize as such. People hate SEO that looks like  advertising. People hate ads. When people see SEO that appears to be advertising they hate it.</p>
<p id="zw-129abec81dcFUQUPQ50324">When people read  the NYT or the Chicago Tribune they don&#8217;t hate these publications inspite  of them having dedicated inhouse SEO teams.</p>
<blockquote>
<p id="zw-129abef5481USPBQg50324">People love SEO because we, the SEO  practicioners provide them what they want when they want it. <br id="zw-129abfe88784X5hU250324" /></p>
</blockquote>
<p id="zw-129abfe5d36xQM73250324">Nobody ever  complains about finding the exact product, service or resource he has  been searching for on top of Google. You want to buy an iPad? I will  sell you an iPad. I don&#8217;t tell you to search for it.</p>
<p>That&#8217;s exactly what  SEO specialists do: They make the most relevant pages show up on  top. Now you&#8217;d say: No, it&#8217;s the holy Google that does it! Evil SEOs  only meddle with it! Well, no. Google has so many requirements a site  has to fulfill to rank above others that it&#8217;s not Google that makes  relevant websites appear on top.</p>
<p id="zw-129abf6e0baje_soR50324">It&#8217;s the SEO experts  who make the pages as relevant and Google friendly as the search giant  needs them to appear on top.</p>
<blockquote>
<p id="zw-129ac009599UyKxhK50324">No site matches Google&#8217;s expectations by  itself. It takes people who work hard to make it relevant. <br id="zw-129ac00aa61FEW3qg50324" /></p>
</blockquote>
<p id="zw-129abf9dbabhcIgXz50324">That&#8217;s why people  love SEO. SEO ensures quality of search results in order to fulfill  people&#8217;s wishes. The people get what they want when they want it because  of SEO. Google only responds to what webmasters and SEOs do.</p>
<p id="zw-129abfc9932Tr9dX750324">Some people argue  that SEO is bad because any website can get optimized to rank on top.  What about the other webmasters? Isn&#8217;t that unfair? Well, who forbids  them to practice SEO or hire an SEO company themselves? Why would you  want a website owner who spends lots of time and/or money to provide a  valuable resource via SEO not to rank on top?</p>
<p id="zw-129abfbb9c5ov1xK50324"><em>Most people won&#8217;t admit it  but they love SEO.</em> They hate ads. So don&#8217;t make your SEO look like ads.  Btw. that&#8217;s one of the main reasons why I don&#8217;t do PPC.</p>
<p id="zw-129abec8273n1i4pW50324">
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=1140&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/dofollow-spread-link-love' rel='bookmark' title='DoFollow: Spread Link Love'>DoFollow: Spread Link Love</a></li>
<li><a href='http://seo2.0.onreact.com/bing-fail' rel='bookmark' title='Bing FAIL'>Bing FAIL</a></li>
<li><a href='http://seo2.0.onreact.com/the-best-seo-strategy-dont-do-seo' rel='bookmark' title='The Best SEO Strategy: Don&#8217;t Do SEO!'>The Best SEO Strategy: Don&#8217;t Do SEO!</a></li>
</ol></p><div style="display:block"><small><em>by Tadeusz Szewczyk <br />&copy;2012 <a href="http://seo2.0.onreact.com">SEO 2.0</a>. All Rights Reserved.Copyright SEO 2.0 at onreact.com</em></small></div>


Related posts:<ol><li><a href='http://seo2.0.onreact.com/dofollow-spread-link-love' rel='bookmark' title='DoFollow: Spread Link Love'>DoFollow: Spread Link Love</a></li>
<li><a href='http://seo2.0.onreact.com/bing-fail' rel='bookmark' title='Bing FAIL'>Bing FAIL</a></li>
<li><a href='http://seo2.0.onreact.com/the-best-seo-strategy-dont-do-seo' rel='bookmark' title='The Best SEO Strategy: Don&#8217;t Do SEO!'>The Best SEO Strategy: Don&#8217;t Do SEO!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!-- table { font-size: 10pt;} --></p>
<p id="zw-129abe63e79PyM5IK50324"><a href="http://seo2.0.onreact.com/wp-content/uploads/2010/07/love-jmscottIMD.jpg"><img class="alignnone size-full wp-image-1141" title="love-jmscottIMD" src="http://seo2.0.onreact.com/wp-content/uploads/2010/07/love-jmscottIMD.jpg" alt="" width="500" height="333" /></a></p>
<p>Love by <a href="http://www.flickr.com/photos/jmscottimd/616642026/" target="_blank">jimscottIMD</a>.</p>
<p id="zw-129abe667b2NMT3zp50324">I hate ads. I&#8217;m  not the only one. Most people hate annoying ads. People hate ads on the  Web and block them using a plethora of tools. They also hate outdoor ads  and TV ads. They hate them</p>
<ul id="zw-129abfd3bcfhTfwDt50324">
<li id="zw-129abfd3bd3jRQv8j50324">for  the interruption</li>
<li id="zw-129abfd3bd8M4v2Uk50324">for the blatant lies <br id="zw-129abfd3bdb5fVFzN50324" /></li>
<li id="zw-129abfd3bdc6gzIdz50324">for the selling of fake lifestyles <br id="zw-129abfd3bdeU9hHS650324" /></li>
</ul>
<p id="zw-129abfd315ajvGO1q50324">we are meant to  aspire to and we can never reach in most cases.</p>
<p id="zw-129abfd13b3B-w8tB50324">They hate ads for  shouting at them.</p>
<blockquote>
<p id="zw-129abfd75f1bnVpcA50324">People hate ads for selling them  something they don&#8217;t want when they don&#8217;t want to be sold to.<br id="zw-129abfd866dhezyGR50324" /></p>
</blockquote>
<p id="zw-129abe7dc44LNlYin50324">That&#8217;s also the  reason why people love SEO.</p>
<p id="zw-129abe812daaQtkiN50324">People love SEO? This guy must be joking you think. Isn&#8217;t  SEO the most detested pariah on the Internet? No.</p>
<p id="zw-129abe8d8cecB4Ki250324">People don&#8217;t hate  web hosting or web design. Likewise people don&#8217;t hate SEO. People hate  bad web hosting, bad web design and they hate bad SEO.</p>
<p id="zw-129abeac12aBT_ttH50324">People hate  servers that go down and sites they can&#8217;t access. People hate awful user  experience on cluttered portal like sites. That&#8217;s why Google succeeded  with a clean interface. Also people hate spammy low-quality SEO  implemented by webmasters who have barely an understanding of search and  user experience.</p>
<p id="zw-129abeb8f5c1TY86x50324">I&#8217;ve said it  before:</p>
<blockquote>
<p id="zw-129abfe2db6zfBmfg50324">Good SEO is invisible. <br id="zw-129abfe451eBcip1n50324" /></p>
</blockquote>
<p id="zw-129abfe3482m4F9xW50324">People only hate  SEO they can see and recognize as such. People hate SEO that looks like  advertising. People hate ads. When people see SEO that appears to be advertising they hate it.</p>
<p id="zw-129abec81dcFUQUPQ50324">When people read  the NYT or the Chicago Tribune they don&#8217;t hate these publications inspite  of them having dedicated inhouse SEO teams.</p>
<blockquote>
<p id="zw-129abef5481USPBQg50324">People love SEO because we, the SEO  practicioners provide them what they want when they want it. <br id="zw-129abfe88784X5hU250324" /></p>
</blockquote>
<p id="zw-129abfe5d36xQM73250324">Nobody ever  complains about finding the exact product, service or resource he has  been searching for on top of Google. You want to buy an iPad? I will  sell you an iPad. I don&#8217;t tell you to search for it.</p>
<p>That&#8217;s exactly what  SEO specialists do: They make the most relevant pages show up on  top. Now you&#8217;d say: No, it&#8217;s the holy Google that does it! Evil SEOs  only meddle with it! Well, no. Google has so many requirements a site  has to fulfill to rank above others that it&#8217;s not Google that makes  relevant websites appear on top.</p>
<p id="zw-129abf6e0baje_soR50324">It&#8217;s the SEO experts  who make the pages as relevant and Google friendly as the search giant  needs them to appear on top.</p>
<blockquote>
<p id="zw-129ac009599UyKxhK50324">No site matches Google&#8217;s expectations by  itself. It takes people who work hard to make it relevant. <br id="zw-129ac00aa61FEW3qg50324" /></p>
</blockquote>
<p id="zw-129abf9dbabhcIgXz50324">That&#8217;s why people  love SEO. SEO ensures quality of search results in order to fulfill  people&#8217;s wishes. The people get what they want when they want it because  of SEO. Google only responds to what webmasters and SEOs do.</p>
<p id="zw-129abfc9932Tr9dX750324">Some people argue  that SEO is bad because any website can get optimized to rank on top.  What about the other webmasters? Isn&#8217;t that unfair? Well, who forbids  them to practice SEO or hire an SEO company themselves? Why would you  want a website owner who spends lots of time and/or money to provide a  valuable resource via SEO not to rank on top?</p>
<p id="zw-129abfbb9c5ov1xK50324"><em>Most people won&#8217;t admit it  but they love SEO.</em> They hate ads. So don&#8217;t make your SEO look like ads.  Btw. that&#8217;s one of the main reasons why I don&#8217;t do PPC.</p>
<p id="zw-129abec8273n1i4pW50324">
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=1140&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/dofollow-spread-link-love' rel='bookmark' title='DoFollow: Spread Link Love'>DoFollow: Spread Link Love</a></li>
<li><a href='http://seo2.0.onreact.com/bing-fail' rel='bookmark' title='Bing FAIL'>Bing FAIL</a></li>
<li><a href='http://seo2.0.onreact.com/the-best-seo-strategy-dont-do-seo' rel='bookmark' title='The Best SEO Strategy: Don&#8217;t Do SEO!'>The Best SEO Strategy: Don&#8217;t Do SEO!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seo2.0.onreact.com/why-people-hate-ads-and-love-seo/feed</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Image SEO for Photographers and Other Visual Artists</title>
		<link>http://seo2.0.onreact.com/image-seo-for-photographers-and-other-visual-artists</link>
		<comments>http://seo2.0.onreact.com/image-seo-for-photographers-and-other-visual-artists#comments</comments>
		<pubDate>Wed, 31 Mar 2010 11:01:34 +0000</pubDate>
		<dc:creator>Tadeusz Szewczyk</dc:creator>
				<category><![CDATA[Definitions]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Empowerment]]></category>
		<category><![CDATA[Findability]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Independence]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO 2.0]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[StumbleUpon]]></category>

		<guid isPermaLink="false">http://seo2.0.onreact.com/?p=952</guid>
		<description><![CDATA[<p><a href="http://seo2.0.onreact.com/wp-content/uploads/2010/03/photographing-the-photographer-naixn.jpg"><img class="alignnone size-full wp-image-953" title="photographing-the-photographer-naixn" src="http://seo2.0.onreact.com/wp-content/uploads/2010/03/photographing-the-photographer-naixn.jpg" alt="photographing-the-photographer-naixn" width="500" height="333" /></a><br />
<strong><br />
</strong>Photographing the Photographer by <a id="cu_q" title="Naixn" href="http://www.flickr.com/photos/naixn/2447827016/">Naixn</a>.<strong></p>
<p>Photographers and other visual artists</strong> have a magnificent tool to show off their work these days, the Internet. Everybody loves great photos and artworks so they spread basically by themselves.</p>
<p>Still there is a big difference between being successful on the Web as a photographer or visual artist and having your images scattered randomly over the Web. <strong>Image SEO</strong> is a great tool to decide yourself which way your work gets on the Web.</p>
<blockquote><p>Most good images get stolen and used without your permission</p></blockquote>
<p>to generate ad revenue for the content thieves while you not only earn nothing financially but don&#8217;t getting any publicity either due to lack of proper credits.</p>
<p>The best way to become successful is to</p>
<blockquote><p>use your images as free advertising</p></blockquote>
<p>for your name while earning money with professional services or premium products, <a id="w.qr" title="selling your images" href="http://blogs.photopreneur.com/creativity-really-can-sell-pictures#more-1201">selling your images</a> for print purposes for instance. Today I want to focus on the ways of promoting your work over the Web to get links and publicity while at the same time curbing image theft of your works.</p>
<p><strong>Add your email address to your Flickr profile</strong>, the same applies to Deviant Art. I often want to seek permission for use of images but do not find a way to contact the photographer or artist. Where there is no way to ask or buy people will just take images without permission or ignore you. I do the latter and search for other images instead. Also add &#8220;more at youraddress.com&#8221; links below each of your images on Flickr.</p>
<p><strong>Do not use LinkedIn as the only way to contact you</strong>, only premium members can send you images. So people relying solely on LinkedIn to get messages will get just get a tiny part of them. Unless you don&#8217;t care provide an email address or at least some form address like formspring.me</p>
<p><strong>Use <a id="g868" title="Behance" href="http://www.behance.net/">Behance</a> and similar portfolio community sites</strong> and make sure to use you real name plus, again, add your email and homepage address there.</p>
<p><strong>Add your URL or name to images</strong>. Add a text layer in Photoshop or using another tool saying something like youraddress.com or copyright by youraddress.com People who steal images tend to add their URLs so in the best case scenario you make sure that people understand the image is yours by saying something like your name, photography.</p>
<p><strong>Submit your images to <a id="rcxm" title="image bookmarking sites" href="../top-7-image-bookmarking-sites-for-daily-inspiration">image bookmarking sites</a></strong> and socialize with like minded users there. In case you don&#8217;t submit them others will, without your permission and proper credits at worst. So make sure you are the first and foremost who submits them with the proper source.</p>
<p><strong>Cut out the middleman</strong> e.g. Getty Images. Why? I&#8217;ve contacted Getty Images a week ago to seek permission to publish an image and I didn&#8217;t get a response beyond an automated &#8220;we get back to you&#8221; reply. Also <a id="iiwt" title="their prices are so high" href="http://www.piggynap.com/awesome/toffs-and-toughs/">their prices are so high</a> that only mainstream media can afford them so by selling there you actually make sure that you don&#8217;t sell many images. Retain ownership of your images and decide on a case to case basis how much to charge.</p>
<p><strong>Use <a id="gep-" title="TinEye" href="http://www.tineye.com/">TinEye</a> to find out who uses and steals your images</strong>. TinEye is a &#8220;reverse image search engine&#8221; that allows you to search for an image just by uploading it or linking it. So you don&#8217;t use keywords but only the image itself.</p>
<p><strong>Use StumbleUpon and Tumblr</strong> etc. to spread your images yourself, reprimand users who steal your images. StumbleUpon and Tumblr are notorious for wide spread image theft. Most people who submit your images don&#8217;t care for copyright on earn money by stealing them and showing them along their ads. Especially <a href="http://seo2.0.onreact.com/how-to-spot-content-theft-on-social-media-and-elsewhere" target="_blank">StumbleUpon is full of stolen images</a> to rip off photographers and artists.</p>
<p><strong>Use a <a id="fbkj" title="CC license" href="http://creativecommons.org/about/licenses">CC license</a> to control the use of your images</strong>. Creative Commons licenses are not about giving away your copyrights, they are about deciding yourself what copyrights you grant others. This is far better than letting people steal your images. Let the people use the images with your permission and you get plenty of links, especially with those licenses requiring attribution.</p>
<p><strong>Build your own homepage and display your images there</strong>. While many photographers aren&#8217;t web designers or can not afford expensive web design there are many services where you can set up a homepage easily. Some of them are even specialized on image content. Without a homepage you will always depend on third parties like Flickr, Behance etc. Flickr might ban you or delete your images. Many images simply get censored because they show parts of the human body. So Flickr etc. are good to spread the word but not to represent you.</p>
<p><strong>Don&#8217;t let Google Images steal your images</strong>. Use a so called <a id="uy3c" title="frame breaker script" href="http://www.thesitewizard.com/archive/framebreak.shtml">frame breaker script</a> to ensure Google Image search users are routed to your site and do no stay on the Google page that frames you.</p>
<p><strong>Apply basic <a id="fw4y" title="image SEO best practices" href="../7-simple-image-seo-best-practices-that-lead-to-the-top-of-google-image-search">image SEO best practices</a></strong> on site to make people find your images on your website.</p>
<p>Update: Use <a href="http://wiep.net/talk/link-building/link-building-with-images/">image specific link building techniques</a>.</p>
<p>These simple and often quite obvious measures will already provide you with plenty of links and publicity. It takes time to use all these tools. Even adding your URL to your images can be quite tedious but you also can automate it. Some people ma not call these techniques image SEO at all but at the end of the day it is.</p>
<blockquote><p>
In the age of social media SEO is about findability, digital asset optimization wherever your assets are and off site optimization does not mean only link building.</p></blockquote>
<p>That&#8217;s SEO 2.0</p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=952&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/top-7-image-bookmarking-sites-for-daily-inspiration' rel='bookmark' title='Image Bookmarking Sites for Daily Inspiration'>Image Bookmarking Sites for Daily Inspiration</a></li>
<li><a href='http://seo2.0.onreact.com/attention-seo-2-0-was-spreading-malware-yesterday' rel='bookmark' title='Attention! SEO 2.0 Was Spreading Malware Yesterday'>Attention! SEO 2.0 Was Spreading Malware Yesterday</a></li>
<li><a href='http://seo2.0.onreact.com/the-10-simplest-website-tweaks-for-designers-to-get-more-clients' rel='bookmark' title='The 10 Simplest Website Tweaks for Designers to Get More Clients'>The 10 Simplest Website Tweaks for Designers to Get More Clients</a></li>
</ol></p><div style="display:block"><small><em>by Tadeusz Szewczyk <br />&copy;2012 <a href="http://seo2.0.onreact.com">SEO 2.0</a>. All Rights Reserved.Copyright SEO 2.0 at onreact.com</em></small></div>


Related posts:<ol><li><a href='http://seo2.0.onreact.com/top-7-image-bookmarking-sites-for-daily-inspiration' rel='bookmark' title='Image Bookmarking Sites for Daily Inspiration'>Image Bookmarking Sites for Daily Inspiration</a></li>
<li><a href='http://seo2.0.onreact.com/attention-seo-2-0-was-spreading-malware-yesterday' rel='bookmark' title='Attention! SEO 2.0 Was Spreading Malware Yesterday'>Attention! SEO 2.0 Was Spreading Malware Yesterday</a></li>
<li><a href='http://seo2.0.onreact.com/the-10-simplest-website-tweaks-for-designers-to-get-more-clients' rel='bookmark' title='The 10 Simplest Website Tweaks for Designers to Get More Clients'>The 10 Simplest Website Tweaks for Designers to Get More Clients</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://seo2.0.onreact.com/wp-content/uploads/2010/03/photographing-the-photographer-naixn.jpg"><img class="alignnone size-full wp-image-953" title="photographing-the-photographer-naixn" src="http://seo2.0.onreact.com/wp-content/uploads/2010/03/photographing-the-photographer-naixn.jpg" alt="photographing-the-photographer-naixn" width="500" height="333" /></a><br />
<strong><br />
</strong>Photographing the Photographer by <a id="cu_q" title="Naixn" href="http://www.flickr.com/photos/naixn/2447827016/">Naixn</a>.<strong></p>
<p>Photographers and other visual artists</strong> have a magnificent tool to show off their work these days, the Internet. Everybody loves great photos and artworks so they spread basically by themselves.</p>
<p>Still there is a big difference between being successful on the Web as a photographer or visual artist and having your images scattered randomly over the Web. <strong>Image SEO</strong> is a great tool to decide yourself which way your work gets on the Web.</p>
<blockquote><p>Most good images get stolen and used without your permission</p></blockquote>
<p>to generate ad revenue for the content thieves while you not only earn nothing financially but don&#8217;t getting any publicity either due to lack of proper credits.</p>
<p>The best way to become successful is to</p>
<blockquote><p>use your images as free advertising</p></blockquote>
<p>for your name while earning money with professional services or premium products, <a id="w.qr" title="selling your images" href="http://blogs.photopreneur.com/creativity-really-can-sell-pictures#more-1201">selling your images</a> for print purposes for instance. Today I want to focus on the ways of promoting your work over the Web to get links and publicity while at the same time curbing image theft of your works.</p>
<p><strong>Add your email address to your Flickr profile</strong>, the same applies to Deviant Art. I often want to seek permission for use of images but do not find a way to contact the photographer or artist. Where there is no way to ask or buy people will just take images without permission or ignore you. I do the latter and search for other images instead. Also add &#8220;more at youraddress.com&#8221; links below each of your images on Flickr.</p>
<p><strong>Do not use LinkedIn as the only way to contact you</strong>, only premium members can send you images. So people relying solely on LinkedIn to get messages will get just get a tiny part of them. Unless you don&#8217;t care provide an email address or at least some form address like formspring.me</p>
<p><strong>Use <a id="g868" title="Behance" href="http://www.behance.net/">Behance</a> and similar portfolio community sites</strong> and make sure to use you real name plus, again, add your email and homepage address there.</p>
<p><strong>Add your URL or name to images</strong>. Add a text layer in Photoshop or using another tool saying something like youraddress.com or copyright by youraddress.com People who steal images tend to add their URLs so in the best case scenario you make sure that people understand the image is yours by saying something like your name, photography.</p>
<p><strong>Submit your images to <a id="rcxm" title="image bookmarking sites" href="../top-7-image-bookmarking-sites-for-daily-inspiration">image bookmarking sites</a></strong> and socialize with like minded users there. In case you don&#8217;t submit them others will, without your permission and proper credits at worst. So make sure you are the first and foremost who submits them with the proper source.</p>
<p><strong>Cut out the middleman</strong> e.g. Getty Images. Why? I&#8217;ve contacted Getty Images a week ago to seek permission to publish an image and I didn&#8217;t get a response beyond an automated &#8220;we get back to you&#8221; reply. Also <a id="iiwt" title="their prices are so high" href="http://www.piggynap.com/awesome/toffs-and-toughs/">their prices are so high</a> that only mainstream media can afford them so by selling there you actually make sure that you don&#8217;t sell many images. Retain ownership of your images and decide on a case to case basis how much to charge.</p>
<p><strong>Use <a id="gep-" title="TinEye" href="http://www.tineye.com/">TinEye</a> to find out who uses and steals your images</strong>. TinEye is a &#8220;reverse image search engine&#8221; that allows you to search for an image just by uploading it or linking it. So you don&#8217;t use keywords but only the image itself.</p>
<p><strong>Use StumbleUpon and Tumblr</strong> etc. to spread your images yourself, reprimand users who steal your images. StumbleUpon and Tumblr are notorious for wide spread image theft. Most people who submit your images don&#8217;t care for copyright on earn money by stealing them and showing them along their ads. Especially <a href="http://seo2.0.onreact.com/how-to-spot-content-theft-on-social-media-and-elsewhere" target="_blank">StumbleUpon is full of stolen images</a> to rip off photographers and artists.</p>
<p><strong>Use a <a id="fbkj" title="CC license" href="http://creativecommons.org/about/licenses">CC license</a> to control the use of your images</strong>. Creative Commons licenses are not about giving away your copyrights, they are about deciding yourself what copyrights you grant others. This is far better than letting people steal your images. Let the people use the images with your permission and you get plenty of links, especially with those licenses requiring attribution.</p>
<p><strong>Build your own homepage and display your images there</strong>. While many photographers aren&#8217;t web designers or can not afford expensive web design there are many services where you can set up a homepage easily. Some of them are even specialized on image content. Without a homepage you will always depend on third parties like Flickr, Behance etc. Flickr might ban you or delete your images. Many images simply get censored because they show parts of the human body. So Flickr etc. are good to spread the word but not to represent you.</p>
<p><strong>Don&#8217;t let Google Images steal your images</strong>. Use a so called <a id="uy3c" title="frame breaker script" href="http://www.thesitewizard.com/archive/framebreak.shtml">frame breaker script</a> to ensure Google Image search users are routed to your site and do no stay on the Google page that frames you.</p>
<p><strong>Apply basic <a id="fw4y" title="image SEO best practices" href="../7-simple-image-seo-best-practices-that-lead-to-the-top-of-google-image-search">image SEO best practices</a></strong> on site to make people find your images on your website.</p>
<p>Update: Use <a href="http://wiep.net/talk/link-building/link-building-with-images/">image specific link building techniques</a>.</p>
<p>These simple and often quite obvious measures will already provide you with plenty of links and publicity. It takes time to use all these tools. Even adding your URL to your images can be quite tedious but you also can automate it. Some people ma not call these techniques image SEO at all but at the end of the day it is.</p>
<blockquote><p>
In the age of social media SEO is about findability, digital asset optimization wherever your assets are and off site optimization does not mean only link building.</p></blockquote>
<p>That&#8217;s SEO 2.0</p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=952&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/top-7-image-bookmarking-sites-for-daily-inspiration' rel='bookmark' title='Image Bookmarking Sites for Daily Inspiration'>Image Bookmarking Sites for Daily Inspiration</a></li>
<li><a href='http://seo2.0.onreact.com/attention-seo-2-0-was-spreading-malware-yesterday' rel='bookmark' title='Attention! SEO 2.0 Was Spreading Malware Yesterday'>Attention! SEO 2.0 Was Spreading Malware Yesterday</a></li>
<li><a href='http://seo2.0.onreact.com/the-10-simplest-website-tweaks-for-designers-to-get-more-clients' rel='bookmark' title='The 10 Simplest Website Tweaks for Designers to Get More Clients'>The 10 Simplest Website Tweaks for Designers to Get More Clients</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seo2.0.onreact.com/image-seo-for-photographers-and-other-visual-artists/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>hkcMjRm: How to Use Google as URL Shortener</title>
		<link>http://seo2.0.onreact.com/hkcmjrm-how-to-use-google-as-url-shortener</link>
		<comments>http://seo2.0.onreact.com/hkcmjrm-how-to-use-google-as-url-shortener#comments</comments>
		<pubDate>Tue, 15 Dec 2009 09:24:50 +0000</pubDate>
		<dc:creator>Tadeusz Szewczyk</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Findability]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO 2.0]]></category>

		<guid isPermaLink="false">http://seo2.0.onreact.com/?p=906</guid>
		<description><![CDATA[<p>Google short URL: <strong>hkcMjRm</strong>.</p>
<p><strong>Update December, 15th 2009</strong>: Try it with <a href="http://l.gog.is/hkcMjRm" class="broken_link">http://l.gog.is/hkcMjRm</a>.</p>
<p>Moreover <em>Google has launched it&#8217;s own official Google URL shortener</em> <a href="http://googleblog.blogspot.com/2009/12/making-urls-shorter-for-google-toolbar.html" target="_blank">yesterday</a>: goo.gl<br />
Thanks <a href="http://www.nugrove.com/" target="_blank">Brandon Diaz</a> for the heads up in the comments.</p>
<p>Sadly goo.gl is only available to Google Toolbar and Feedburner users as of now. I don&#8217;t recommend the Google Toolbar for its spyware issues. I use <a href="http://www.feedburner.com/" target="_blank">Feedburner</a> on this blog though.</p>
<p>Also many thanks to the man behind <a href="http://gogglis.appspot.com/">gog.is</a> who introduced the &#8220;I&#8217;m feeling lucky&#8221; search results forwarding. This works like the &#8220;I&#8217;m feeling lucky&#8221; button on the actual Google search page. It redirects you to the first search result. This is still the best way to optimize for personal search. See below. Example: <a href="http://l.gog.is/seo+2.0" class="broken_link">http://l.gog.is/seo+2.0</a></p>
<p>Post as originally published on December 9, 2009:</p>
<p>My first idea to deal with <a id="zr.5" title="the new personal/ized Google search" href="../12-effects-google-personal-search-will-have-on-seo-blogging-social-media-and-the-web-as-whole">the new personal/ized Google search</a> was: <a id="gw1c" title="You have to make people click your search results" href="../10-new-google-personal-search-blogging-social-media-seo-tactics">You have to make people click your search results</a>, that is those you appear on in Google. We must do that in order to make Google save your URL as one that has been clicked by the user and thus will be found better next time.</p>
<p>Then there is the issue with unreliability of common URL shorteners. Just think of:</p>
<ul>
<li><a href="http://seo2.0.onreact.com/tinyurl-down-10-short-url-services-that-are-more-advanced-alternatives">tinyurl.com</a> &#8211; often down for undisclosed reasons</li>
<li>bit.ly &#8211; .ly stands for Libya, remember Lockerbie?</li>
<li>tr.im &#8211; almost closed down, now often down for server issues</li>
<li>poprl.com &#8211; disappeared altogether</li>
<li>zi.ma &#8211; owner got imprisoned, hoster took it down for a while</li>
</ul>
<p>Also I asked myself  &#8220;why does Google not offer an URL shortener?&#8221; It could easily. So I came up with the idea of feeding two birds with one crumb (I don&#8217;t <a id="wwzi" title="kill birds with stones" href="http://www.usingenglish.com/reference/idioms/kill+two+birds+with+one+stone.html" target="_blank">kill birds with stones</a>!) and to make Google work as an URL shortener.</p>
<p>How is that possible? Just think what the URL shorteners do. They create a random combination of letters like hkcMjRm add it as a new URL to their own domain and then redirect the traffic.</p>
<p>Thinks of what Google does. In case you&#8217;re too lazy to type in all that http-www stuff you just type in your keyword or website name and get redirected to the first result. We&#8217;ll do the same thing. [ Edit: After a few minutes this doesn't seem to work yet. You still have to click the search result manually.]</p>
<ol>
<li>We create a random combination of letters, 7 of them, here it&#8217;s hkcMjRm. We can use a pasword creator for that task. I did that in Keepass but  you can do that online as well using a password generator <a id="ktch" title="like this" href="http://www.pctools.com/guides/password/" target="_blank">like this</a>.</li>
<li>Then we check Google results whether hkcMjRm already exists in search index. In case it doesn&#8217;t we can use it. Most 7 letters combinations don&#8217;t exist yet. I tried a few. 6 letters combinations often have one or a few results already.</li>
<li>Now we copy and paste hkcMjRm into the URL bar and voila: We get redirected to the right destination but Google remembers that we used search for it. Or test it yourself just searching for it: <a id="zl9o" title="hkcMjRm" href="http://www.google.com/search?q=hkcMjRm" target="_blank">hkcMjRm</a></li>
</ol>
<p>There are of course downsides to this: For instance people may outrank you for your id URL using the same one but it will take a while. There is also another pro to this approach: You quickly see who uses your content or where it appears.</p>
<p>To make sure it works I used the hkcMjRm id both in the headline as well as inside the text but I guess a line like &#8220;Google short URL: <strong>hkcMjRm</strong>.&#8221; will be enough for it to work long enough for people via Twitter using it.</p>
<p>Of course you don&#8217;t even have to use cryptic random letters. You can just take the headline or parts of it like I did yesterday with google.com? <a id="suiv" title="I got outranked by tweetmeme" href="http://www.google.com/search?q=personal+search+seo+tactics" target="_blank">I got outranked by tweetmeme</a> already a day later.</p>
<p>This is quick and dirty but I&#8217;m sure some people can make it work for them. I guess Google will sooner or later present their own URL shortening service anyways. Until then you might want to try this. At least this way it works for better ranking personal search until of course many people abuse this technique and Google stops it.</p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=906&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/seo-test-default-personalized-search-is-a-myth-it-doesnt-work' rel='bookmark' title='SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work'>SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work</a></li>
<li><a href='http://seo2.0.onreact.com/12-effects-google-personal-search-will-have-on-seo-blogging-social-media-and-the-web-as-whole' rel='bookmark' title='12 Effects Google Personal Search Will Have on SEO, Blogging, Social Media and the Web as Whole'>12 Effects Google Personal Search Will Have on SEO, Blogging, Social Media and the Web as Whole</a></li>
<li><a href='http://seo2.0.onreact.com/seo-company-seo-and-search-engine-optimization-google-results-are-a-disgrace' rel='bookmark' title='SEO Company, SEO and Search Engine Optimization Google Results Are a Disgrace'>SEO Company, SEO and Search Engine Optimization Google Results Are a Disgrace</a></li>
</ol></p><div style="display:block"><small><em>by Tadeusz Szewczyk <br />&copy;2012 <a href="http://seo2.0.onreact.com">SEO 2.0</a>. All Rights Reserved.Copyright SEO 2.0 at onreact.com</em></small></div>


Related posts:<ol><li><a href='http://seo2.0.onreact.com/seo-test-default-personalized-search-is-a-myth-it-doesnt-work' rel='bookmark' title='SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work'>SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work</a></li>
<li><a href='http://seo2.0.onreact.com/12-effects-google-personal-search-will-have-on-seo-blogging-social-media-and-the-web-as-whole' rel='bookmark' title='12 Effects Google Personal Search Will Have on SEO, Blogging, Social Media and the Web as Whole'>12 Effects Google Personal Search Will Have on SEO, Blogging, Social Media and the Web as Whole</a></li>
<li><a href='http://seo2.0.onreact.com/seo-company-seo-and-search-engine-optimization-google-results-are-a-disgrace' rel='bookmark' title='SEO Company, SEO and Search Engine Optimization Google Results Are a Disgrace'>SEO Company, SEO and Search Engine Optimization Google Results Are a Disgrace</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Google short URL: <strong>hkcMjRm</strong>.</p>
<p><strong>Update December, 15th 2009</strong>: Try it with <a href="http://l.gog.is/hkcMjRm" class="broken_link">http://l.gog.is/hkcMjRm</a>.</p>
<p>Moreover <em>Google has launched it&#8217;s own official Google URL shortener</em> <a href="http://googleblog.blogspot.com/2009/12/making-urls-shorter-for-google-toolbar.html" target="_blank">yesterday</a>: goo.gl<br />
Thanks <a href="http://www.nugrove.com/" target="_blank">Brandon Diaz</a> for the heads up in the comments.</p>
<p>Sadly goo.gl is only available to Google Toolbar and Feedburner users as of now. I don&#8217;t recommend the Google Toolbar for its spyware issues. I use <a href="http://www.feedburner.com/" target="_blank">Feedburner</a> on this blog though.</p>
<p>Also many thanks to the man behind <a href="http://gogglis.appspot.com/">gog.is</a> who introduced the &#8220;I&#8217;m feeling lucky&#8221; search results forwarding. This works like the &#8220;I&#8217;m feeling lucky&#8221; button on the actual Google search page. It redirects you to the first search result. This is still the best way to optimize for personal search. See below. Example: <a href="http://l.gog.is/seo+2.0" class="broken_link">http://l.gog.is/seo+2.0</a></p>
<p>Post as originally published on December 9, 2009:</p>
<p>My first idea to deal with <a id="zr.5" title="the new personal/ized Google search" href="../12-effects-google-personal-search-will-have-on-seo-blogging-social-media-and-the-web-as-whole">the new personal/ized Google search</a> was: <a id="gw1c" title="You have to make people click your search results" href="../10-new-google-personal-search-blogging-social-media-seo-tactics">You have to make people click your search results</a>, that is those you appear on in Google. We must do that in order to make Google save your URL as one that has been clicked by the user and thus will be found better next time.</p>
<p>Then there is the issue with unreliability of common URL shorteners. Just think of:</p>
<ul>
<li><a href="http://seo2.0.onreact.com/tinyurl-down-10-short-url-services-that-are-more-advanced-alternatives">tinyurl.com</a> &#8211; often down for undisclosed reasons</li>
<li>bit.ly &#8211; .ly stands for Libya, remember Lockerbie?</li>
<li>tr.im &#8211; almost closed down, now often down for server issues</li>
<li>poprl.com &#8211; disappeared altogether</li>
<li>zi.ma &#8211; owner got imprisoned, hoster took it down for a while</li>
</ul>
<p>Also I asked myself  &#8220;why does Google not offer an URL shortener?&#8221; It could easily. So I came up with the idea of feeding two birds with one crumb (I don&#8217;t <a id="wwzi" title="kill birds with stones" href="http://www.usingenglish.com/reference/idioms/kill+two+birds+with+one+stone.html" target="_blank">kill birds with stones</a>!) and to make Google work as an URL shortener.</p>
<p>How is that possible? Just think what the URL shorteners do. They create a random combination of letters like hkcMjRm add it as a new URL to their own domain and then redirect the traffic.</p>
<p>Thinks of what Google does. In case you&#8217;re too lazy to type in all that http-www stuff you just type in your keyword or website name and get redirected to the first result. We&#8217;ll do the same thing. [ Edit: After a few minutes this doesn't seem to work yet. You still have to click the search result manually.]</p>
<ol>
<li>We create a random combination of letters, 7 of them, here it&#8217;s hkcMjRm. We can use a pasword creator for that task. I did that in Keepass but  you can do that online as well using a password generator <a id="ktch" title="like this" href="http://www.pctools.com/guides/password/" target="_blank">like this</a>.</li>
<li>Then we check Google results whether hkcMjRm already exists in search index. In case it doesn&#8217;t we can use it. Most 7 letters combinations don&#8217;t exist yet. I tried a few. 6 letters combinations often have one or a few results already.</li>
<li>Now we copy and paste hkcMjRm into the URL bar and voila: We get redirected to the right destination but Google remembers that we used search for it. Or test it yourself just searching for it: <a id="zl9o" title="hkcMjRm" href="http://www.google.com/search?q=hkcMjRm" target="_blank">hkcMjRm</a></li>
</ol>
<p>There are of course downsides to this: For instance people may outrank you for your id URL using the same one but it will take a while. There is also another pro to this approach: You quickly see who uses your content or where it appears.</p>
<p>To make sure it works I used the hkcMjRm id both in the headline as well as inside the text but I guess a line like &#8220;Google short URL: <strong>hkcMjRm</strong>.&#8221; will be enough for it to work long enough for people via Twitter using it.</p>
<p>Of course you don&#8217;t even have to use cryptic random letters. You can just take the headline or parts of it like I did yesterday with google.com? <a id="suiv" title="I got outranked by tweetmeme" href="http://www.google.com/search?q=personal+search+seo+tactics" target="_blank">I got outranked by tweetmeme</a> already a day later.</p>
<p>This is quick and dirty but I&#8217;m sure some people can make it work for them. I guess Google will sooner or later present their own URL shortening service anyways. Until then you might want to try this. At least this way it works for better ranking personal search until of course many people abuse this technique and Google stops it.</p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=906&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/seo-test-default-personalized-search-is-a-myth-it-doesnt-work' rel='bookmark' title='SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work'>SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work</a></li>
<li><a href='http://seo2.0.onreact.com/12-effects-google-personal-search-will-have-on-seo-blogging-social-media-and-the-web-as-whole' rel='bookmark' title='12 Effects Google Personal Search Will Have on SEO, Blogging, Social Media and the Web as Whole'>12 Effects Google Personal Search Will Have on SEO, Blogging, Social Media and the Web as Whole</a></li>
<li><a href='http://seo2.0.onreact.com/seo-company-seo-and-search-engine-optimization-google-results-are-a-disgrace' rel='bookmark' title='SEO Company, SEO and Search Engine Optimization Google Results Are a Disgrace'>SEO Company, SEO and Search Engine Optimization Google Results Are a Disgrace</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seo2.0.onreact.com/hkcmjrm-how-to-use-google-as-url-shortener/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>12 Effects Google Personal Search Will Have on SEO, Blogging, Social Media and the Web as Whole</title>
		<link>http://seo2.0.onreact.com/12-effects-google-personal-search-will-have-on-seo-blogging-social-media-and-the-web-as-whole</link>
		<comments>http://seo2.0.onreact.com/12-effects-google-personal-search-will-have-on-seo-blogging-social-media-and-the-web-as-whole#comments</comments>
		<pubDate>Mon, 07 Dec 2009 14:18:25 +0000</pubDate>
		<dc:creator>Tadeusz Szewczyk</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Definitions]]></category>
		<category><![CDATA[Findability]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Reputation]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO 2.0]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://seo2.0.onreact.com/?p=897</guid>
		<description><![CDATA[<p><a href="http://seo2.0.onreact.com/wp-content/uploads/2009/12/personal-preference-kevin-dooley.jpg"><img class="alignnone size-full wp-image-898" title="personal-preference-kevin-dooley" src="http://seo2.0.onreact.com/wp-content/uploads/2009/12/personal-preference-kevin-dooley.jpg" alt="personal-preference-kevin-dooley" width="500" height="437" /></a></p>
<p>Image: Personal Preference by <a href="http://www.flickr.com/photos/pagedooley/2501221697/" target="_blank">Kevin Dooley</a>.</p>
<p><strong><a id="u871" title="Google gets personal" href="http://blogs.ft.com/techblog/2009/12/google-gets-personal/" target="_blank">Google gets personal</a></strong>: Now <a id="ixcc" title="everybody will get personalized search results" href="http://googleblog.blogspot.com/2009/12/personalized-search-for-everyone.html" target="_blank">everybody will get personalized search results</a> <a id="v0qm" title="based on their search habits in the past" href="http://searchengineland.com/google-now-personalizes-everyones-search-results-31195" target="_blank">based on their search habits in the past</a> <a id="il7b" title="unless they opt out in a tedious process" href="http://www.seroundtable.com/archives/021303.html" target="_blank">unless they opt out in a tedious process</a>. So most people won&#8217;t opt out or even notice at all, at least at first.</p>
<ol>
<li><strong>The rich will get richer</strong>, that is the attention rich. Those sites that have a brand and/or audience already will profit from Google personal search results. The sites people already click most often will rank on top. Wikipedia will dominate even more.</li>
<li><strong>People will get confused</strong>. &#8220;Yesterday it was there when I checked it at home!&#8221; might become a common exclamation in the near future. People switching computers (home/mobile/work) will face different results unless they use all of them in a highly similar manner.</li>
<li><strong>SEOs will finally focus on conversions and ROI</strong>. Lazy SEOs still stick to rankings no matter how profitable they are. Checking rankings will become even more pointless from now on. Conversions and ROI are key to measuring success now more than ever.</li>
<li><strong>John Doe bloggers will end up ghettoized</strong>. You have below 50 subscribers? These people will find you on Google. The others won&#8217;t anymore as Wikipedia, NYT, CNN, BBC and Yahoo Answers a well as Huntington Post, TechCrunch and Engadget etc. will push you further down.</li>
<li><strong>Social Media sites will get more user generated content (UGC)</strong> as people will try to get some traffic from the few remaining behemoth sites lucky enough to get clicked in search results often enough to get a push.</li>
<li><strong>The Web will become boring</strong>. People will visit more and more of the same sites. It will become more and more difficult to find new things, original sources and small time publishers.</li>
<li><strong>SEO Noobs will try to convince you that SEO is dead</strong>. SEO is dead all the time. Even I said so, but I meant a different thing than the people who have no clue about SEO. I meant that SEO has changed in a way that you wouldn&#8217;t recognize it as the SEO we&#8217;re accustomed to. The &#8220;SEO is dead&#8221; bunch assumes that personal search results can&#8217;t get optimized. Of course they can.</li>
<li><strong>More group blogs will emerge</strong> to make sure to get at least the same attention as some big name bloggers and news outlets.</li>
<li><strong>Old and new social filters might re/appear</strong>. As people will want to rely on crowdsourcing rather than their own limited search habits they&#8217;ll look after ways to determine what&#8217;s good and what not with a little help of their friends.</li>
<li><strong>Google will gain even more power and your privacy will become a thing of the past</strong>. Google knows what you are searching for but now it will tell your family, flat mates or coworkers. So make sure not to use Google for that xxx stuff in case you want to keep your deviations private.</li>
<li><strong>The sheer number of people ranking a site on top will push it for others as well</strong>. Finally click through data will become the new Google PageRank. When 1000 people click your link repeatedly in the search results you can&#8217;t be wrong can you?</li>
<li><strong>You will have to optimize your blog for returning visitors in order to get search traffic</strong>, even first timers. This contradiction will lead to some new hitherto unknown SEO tactics.</li>
</ol>
<p>Btw. Danny Sullivan expected this to happen since 2001. In an article called &#8220;<a id="wdjt" title="Google May get Personal" href="http://searchenginewatch.com/2164251" target="_blank">Google May get Personal</a>&#8221; he also explains why one of the personal search results startups failed though:</p>
<blockquote><p>People &#8220;were afraid to miss something&#8221;.</p></blockquote>
<p>My head is already buzzing with ideas on how to optimize for Google personal search (even if it&#8217;s still just called Google). That&#8217;s the great thing about SEO. It never gets stale. You always have to come up with new things to please Google and search users. Also most people don&#8217;t get it and thus SEO will live forever.</p>
<p><em>What tactics do you plan to employ to attract Google personal search visitors? </em></p>
<p>Suggestions in the comments might get used in my next blog post either here or on <a id="m2kg" title="SEOptimise" href="http://www.seoptimise.com/blog/" target="_blank">SEOptimise</a>. That means a link to the source.</p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=897&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/10-new-google-personal-search-blogging-social-media-seo-tactics' rel='bookmark' title='10 New Google Personal Search Blogging, Social Media &amp; SEO Tactics'>10 New Google Personal Search Blogging, Social Media &#038; SEO Tactics</a></li>
<li><a href='http://seo2.0.onreact.com/30-hands-on-google-search-plus-seo-techniques-for-getting-personal' rel='bookmark' title='30 Hands On Google Search Plus SEO Techniques for Getting Personal'>30 Hands On Google Search Plus SEO Techniques for Getting Personal</a></li>
<li><a href='http://seo2.0.onreact.com/the-roi-of-blogging-and-social-media' rel='bookmark' title='The ROI of Blogging and Social Media'>The ROI of Blogging and Social Media</a></li>
</ol></p><div style="display:block"><small><em>by Tadeusz Szewczyk <br />&copy;2012 <a href="http://seo2.0.onreact.com">SEO 2.0</a>. All Rights Reserved.Copyright SEO 2.0 at onreact.com</em></small></div>


Related posts:<ol><li><a href='http://seo2.0.onreact.com/10-new-google-personal-search-blogging-social-media-seo-tactics' rel='bookmark' title='10 New Google Personal Search Blogging, Social Media &amp; SEO Tactics'>10 New Google Personal Search Blogging, Social Media &#038; SEO Tactics</a></li>
<li><a href='http://seo2.0.onreact.com/30-hands-on-google-search-plus-seo-techniques-for-getting-personal' rel='bookmark' title='30 Hands On Google Search Plus SEO Techniques for Getting Personal'>30 Hands On Google Search Plus SEO Techniques for Getting Personal</a></li>
<li><a href='http://seo2.0.onreact.com/the-roi-of-blogging-and-social-media' rel='bookmark' title='The ROI of Blogging and Social Media'>The ROI of Blogging and Social Media</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://seo2.0.onreact.com/wp-content/uploads/2009/12/personal-preference-kevin-dooley.jpg"><img class="alignnone size-full wp-image-898" title="personal-preference-kevin-dooley" src="http://seo2.0.onreact.com/wp-content/uploads/2009/12/personal-preference-kevin-dooley.jpg" alt="personal-preference-kevin-dooley" width="500" height="437" /></a></p>
<p>Image: Personal Preference by <a href="http://www.flickr.com/photos/pagedooley/2501221697/" target="_blank">Kevin Dooley</a>.</p>
<p><strong><a id="u871" title="Google gets personal" href="http://blogs.ft.com/techblog/2009/12/google-gets-personal/" target="_blank">Google gets personal</a></strong>: Now <a id="ixcc" title="everybody will get personalized search results" href="http://googleblog.blogspot.com/2009/12/personalized-search-for-everyone.html" target="_blank">everybody will get personalized search results</a> <a id="v0qm" title="based on their search habits in the past" href="http://searchengineland.com/google-now-personalizes-everyones-search-results-31195" target="_blank">based on their search habits in the past</a> <a id="il7b" title="unless they opt out in a tedious process" href="http://www.seroundtable.com/archives/021303.html" target="_blank">unless they opt out in a tedious process</a>. So most people won&#8217;t opt out or even notice at all, at least at first.</p>
<ol>
<li><strong>The rich will get richer</strong>, that is the attention rich. Those sites that have a brand and/or audience already will profit from Google personal search results. The sites people already click most often will rank on top. Wikipedia will dominate even more.</li>
<li><strong>People will get confused</strong>. &#8220;Yesterday it was there when I checked it at home!&#8221; might become a common exclamation in the near future. People switching computers (home/mobile/work) will face different results unless they use all of them in a highly similar manner.</li>
<li><strong>SEOs will finally focus on conversions and ROI</strong>. Lazy SEOs still stick to rankings no matter how profitable they are. Checking rankings will become even more pointless from now on. Conversions and ROI are key to measuring success now more than ever.</li>
<li><strong>John Doe bloggers will end up ghettoized</strong>. You have below 50 subscribers? These people will find you on Google. The others won&#8217;t anymore as Wikipedia, NYT, CNN, BBC and Yahoo Answers a well as Huntington Post, TechCrunch and Engadget etc. will push you further down.</li>
<li><strong>Social Media sites will get more user generated content (UGC)</strong> as people will try to get some traffic from the few remaining behemoth sites lucky enough to get clicked in search results often enough to get a push.</li>
<li><strong>The Web will become boring</strong>. People will visit more and more of the same sites. It will become more and more difficult to find new things, original sources and small time publishers.</li>
<li><strong>SEO Noobs will try to convince you that SEO is dead</strong>. SEO is dead all the time. Even I said so, but I meant a different thing than the people who have no clue about SEO. I meant that SEO has changed in a way that you wouldn&#8217;t recognize it as the SEO we&#8217;re accustomed to. The &#8220;SEO is dead&#8221; bunch assumes that personal search results can&#8217;t get optimized. Of course they can.</li>
<li><strong>More group blogs will emerge</strong> to make sure to get at least the same attention as some big name bloggers and news outlets.</li>
<li><strong>Old and new social filters might re/appear</strong>. As people will want to rely on crowdsourcing rather than their own limited search habits they&#8217;ll look after ways to determine what&#8217;s good and what not with a little help of their friends.</li>
<li><strong>Google will gain even more power and your privacy will become a thing of the past</strong>. Google knows what you are searching for but now it will tell your family, flat mates or coworkers. So make sure not to use Google for that xxx stuff in case you want to keep your deviations private.</li>
<li><strong>The sheer number of people ranking a site on top will push it for others as well</strong>. Finally click through data will become the new Google PageRank. When 1000 people click your link repeatedly in the search results you can&#8217;t be wrong can you?</li>
<li><strong>You will have to optimize your blog for returning visitors in order to get search traffic</strong>, even first timers. This contradiction will lead to some new hitherto unknown SEO tactics.</li>
</ol>
<p>Btw. Danny Sullivan expected this to happen since 2001. In an article called &#8220;<a id="wdjt" title="Google May get Personal" href="http://searchenginewatch.com/2164251" target="_blank">Google May get Personal</a>&#8221; he also explains why one of the personal search results startups failed though:</p>
<blockquote><p>People &#8220;were afraid to miss something&#8221;.</p></blockquote>
<p>My head is already buzzing with ideas on how to optimize for Google personal search (even if it&#8217;s still just called Google). That&#8217;s the great thing about SEO. It never gets stale. You always have to come up with new things to please Google and search users. Also most people don&#8217;t get it and thus SEO will live forever.</p>
<p><em>What tactics do you plan to employ to attract Google personal search visitors? </em></p>
<p>Suggestions in the comments might get used in my next blog post either here or on <a id="m2kg" title="SEOptimise" href="http://www.seoptimise.com/blog/" target="_blank">SEOptimise</a>. That means a link to the source.</p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=897&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/10-new-google-personal-search-blogging-social-media-seo-tactics' rel='bookmark' title='10 New Google Personal Search Blogging, Social Media &amp; SEO Tactics'>10 New Google Personal Search Blogging, Social Media &#038; SEO Tactics</a></li>
<li><a href='http://seo2.0.onreact.com/30-hands-on-google-search-plus-seo-techniques-for-getting-personal' rel='bookmark' title='30 Hands On Google Search Plus SEO Techniques for Getting Personal'>30 Hands On Google Search Plus SEO Techniques for Getting Personal</a></li>
<li><a href='http://seo2.0.onreact.com/the-roi-of-blogging-and-social-media' rel='bookmark' title='The ROI of Blogging and Social Media'>The ROI of Blogging and Social Media</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seo2.0.onreact.com/12-effects-google-personal-search-will-have-on-seo-blogging-social-media-and-the-web-as-whole/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Google Indexes Twitter Links</title>
		<link>http://seo2.0.onreact.com/google-indexes-twitter-links</link>
		<comments>http://seo2.0.onreact.com/google-indexes-twitter-links#comments</comments>
		<pubDate>Thu, 08 Oct 2009 11:18:29 +0000</pubDate>
		<dc:creator>Tadeusz Szewczyk</dc:creator>
				<category><![CDATA[Findability]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SEO 2.0]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://seo2.0.onreact.com/google-indexes-twitter-links</guid>
		<description><![CDATA[<p><img style="max-width: 800px;" src="http://seo2.0.onreact.com/wp-content/uploads/2009/10/twitter-test-favorite.png" alt="" /></p>
<p><em>How to get Indexed by Google in 2009?</em> Just use Twitter. This is no joke. I ran a test on Twitter to find out whether <strong>Google indexes Twitter links</strong> and surprise, surprise it does.</p>
<p>Of course Google can&#8217;t ignore Twitter, the fastest and most common social networking site out there. The problem is Twitter doesn&#8217;t want to get its links getting indexed by Google an prevents it by adding the nofollow attribute.</p>
<p>Google, along with other search engines introduced nofollow allegedly to combat spam and later to scare webmasters into submission (either they add nofollow to ads or they get penalized).</p>
<p>Now that&#8217;s a problem. They can&#8217;t ignore their own rules, can they? Twitter uses nofollow on all links doesn&#8217;t it? No, the mobile version which gets indexed as well does not use nofollow. <a href="http://m.twitter.com/onreact_com" target="_blank">See my profile in the mobile version</a>. Ironically the Google cache version of it does.</p>
<blockquote><p>Whatever the reasons may be: Google actually indexes Twitter links.</p></blockquote>
<p>Whether it&#8217;s a bug or feature, I don&#8217;t know. I can imagine Twitter closing this &#8220;loophole&#8221; now that &#8220;evil SEOs&#8221; like me write about it. I&#8217;d certainly like to see how Google will justify indexation of Twitter links then. We all know that Google is black hat. They show different content to users than to spiders, especially in countries like China&#8230; The Google engineers will surely find a new way of gaming Twitter. As of now webmasters, SEOs and Google shareholders can rejoice: Google officially is tapping into the wisdom of crowds displayed on Twitter.</p>
<p><strong>The Twitter Indexation Test Setup</strong></p>
<p><em>How did I find out about Google indexing Twitter links?</em> I set up a page on my onreact.com domain solely for the purpose of testing Twitter link indexation. It contained only text. It was a dead end page: No incoming or outgoing links. With one exception: I tweeted the link once and asked my followers to ignore it. Also I favorited it on Twitter.com</p>
<p>I checked a few hours later, a day later, two days later and nothing happened. So I forgot about the test. Now after 3 months I rediscovered my bookmarks and took a quick look in the Google index and what did I find? The test page.</p>
<p>Now at first I suspected some third party Twitter tool to display my link and thus Google indexing. No, as of now there is no other instance of the text on that page than my Twitter stream and the page on onreact.com itself:</p>
<p><img style="max-width: 800px;" src="http://seo2.0.onreact.com/wp-content/uploads/2009/10/twitter-test-onreact-google-results.png" alt="" /></p>
<p>Please note that the mobile version was not in the index in spite of my mobile page being even cached by Google.</p>
<p>So the most likely scenario is that Google indexes Twitter links directly from Twitter. Sadly I made one mistake when setting up the test. While adding a server based analytics script to the page to see Google spidering the page I used the wrong path to the analytics tool. So we don&#8217;t know when the Google bot actually hit the page. You might want to repeat the test with a better setup to make sure the result is valid.</p>
<blockquote><p>It seems that there is a substantial delay to indexing links via Twitter.</p></blockquote>
<p>Maybe sneaky Google doesn&#8217;t want to get caught in the act? Remember that Twitter is a Google competitor with its real time search capabilities. I&#8217;m quite sure Google is keen on catching up here, using Twitter data directly via the API for instance.</p>
<p>Btw.: Neither Yahoo nor Bing have indexed the page. Thus Yahoo also can&#8217;t find any links leading to it.</p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=842&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/does-google-index-your-robots-txt' rel='bookmark' title='Does Google Index Your robots.txt?'>Does Google Index Your robots.txt?</a></li>
<li><a href='http://seo2.0.onreact.com/google-buys-links-with-hidden-anchor-text' rel='bookmark' title='Google Buys Links with Hidden Anchor Text'>Google Buys Links with Hidden Anchor Text</a></li>
<li><a href='http://seo2.0.onreact.com/seo-test-default-personalized-search-is-a-myth-it-doesnt-work' rel='bookmark' title='SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work'>SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work</a></li>
</ol></p><div style="display:block"><small><em>by Tadeusz Szewczyk <br />&copy;2012 <a href="http://seo2.0.onreact.com">SEO 2.0</a>. All Rights Reserved.Copyright SEO 2.0 at onreact.com</em></small></div>


Related posts:<ol><li><a href='http://seo2.0.onreact.com/does-google-index-your-robots-txt' rel='bookmark' title='Does Google Index Your robots.txt?'>Does Google Index Your robots.txt?</a></li>
<li><a href='http://seo2.0.onreact.com/google-buys-links-with-hidden-anchor-text' rel='bookmark' title='Google Buys Links with Hidden Anchor Text'>Google Buys Links with Hidden Anchor Text</a></li>
<li><a href='http://seo2.0.onreact.com/seo-test-default-personalized-search-is-a-myth-it-doesnt-work' rel='bookmark' title='SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work'>SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style="max-width: 800px;" src="http://seo2.0.onreact.com/wp-content/uploads/2009/10/twitter-test-favorite.png" alt="" /></p>
<p><em>How to get Indexed by Google in 2009?</em> Just use Twitter. This is no joke. I ran a test on Twitter to find out whether <strong>Google indexes Twitter links</strong> and surprise, surprise it does.</p>
<p>Of course Google can&#8217;t ignore Twitter, the fastest and most common social networking site out there. The problem is Twitter doesn&#8217;t want to get its links getting indexed by Google an prevents it by adding the nofollow attribute.</p>
<p>Google, along with other search engines introduced nofollow allegedly to combat spam and later to scare webmasters into submission (either they add nofollow to ads or they get penalized).</p>
<p>Now that&#8217;s a problem. They can&#8217;t ignore their own rules, can they? Twitter uses nofollow on all links doesn&#8217;t it? No, the mobile version which gets indexed as well does not use nofollow. <a href="http://m.twitter.com/onreact_com" target="_blank">See my profile in the mobile version</a>. Ironically the Google cache version of it does.</p>
<blockquote><p>Whatever the reasons may be: Google actually indexes Twitter links.</p></blockquote>
<p>Whether it&#8217;s a bug or feature, I don&#8217;t know. I can imagine Twitter closing this &#8220;loophole&#8221; now that &#8220;evil SEOs&#8221; like me write about it. I&#8217;d certainly like to see how Google will justify indexation of Twitter links then. We all know that Google is black hat. They show different content to users than to spiders, especially in countries like China&#8230; The Google engineers will surely find a new way of gaming Twitter. As of now webmasters, SEOs and Google shareholders can rejoice: Google officially is tapping into the wisdom of crowds displayed on Twitter.</p>
<p><strong>The Twitter Indexation Test Setup</strong></p>
<p><em>How did I find out about Google indexing Twitter links?</em> I set up a page on my onreact.com domain solely for the purpose of testing Twitter link indexation. It contained only text. It was a dead end page: No incoming or outgoing links. With one exception: I tweeted the link once and asked my followers to ignore it. Also I favorited it on Twitter.com</p>
<p>I checked a few hours later, a day later, two days later and nothing happened. So I forgot about the test. Now after 3 months I rediscovered my bookmarks and took a quick look in the Google index and what did I find? The test page.</p>
<p>Now at first I suspected some third party Twitter tool to display my link and thus Google indexing. No, as of now there is no other instance of the text on that page than my Twitter stream and the page on onreact.com itself:</p>
<p><img style="max-width: 800px;" src="http://seo2.0.onreact.com/wp-content/uploads/2009/10/twitter-test-onreact-google-results.png" alt="" /></p>
<p>Please note that the mobile version was not in the index in spite of my mobile page being even cached by Google.</p>
<p>So the most likely scenario is that Google indexes Twitter links directly from Twitter. Sadly I made one mistake when setting up the test. While adding a server based analytics script to the page to see Google spidering the page I used the wrong path to the analytics tool. So we don&#8217;t know when the Google bot actually hit the page. You might want to repeat the test with a better setup to make sure the result is valid.</p>
<blockquote><p>It seems that there is a substantial delay to indexing links via Twitter.</p></blockquote>
<p>Maybe sneaky Google doesn&#8217;t want to get caught in the act? Remember that Twitter is a Google competitor with its real time search capabilities. I&#8217;m quite sure Google is keen on catching up here, using Twitter data directly via the API for instance.</p>
<p>Btw.: Neither Yahoo nor Bing have indexed the page. Thus Yahoo also can&#8217;t find any links leading to it.</p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=842&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/does-google-index-your-robots-txt' rel='bookmark' title='Does Google Index Your robots.txt?'>Does Google Index Your robots.txt?</a></li>
<li><a href='http://seo2.0.onreact.com/google-buys-links-with-hidden-anchor-text' rel='bookmark' title='Google Buys Links with Hidden Anchor Text'>Google Buys Links with Hidden Anchor Text</a></li>
<li><a href='http://seo2.0.onreact.com/seo-test-default-personalized-search-is-a-myth-it-doesnt-work' rel='bookmark' title='SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work'>SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seo2.0.onreact.com/google-indexes-twitter-links/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Bing FAIL</title>
		<link>http://seo2.0.onreact.com/bing-fail</link>
		<comments>http://seo2.0.onreact.com/bing-fail#comments</comments>
		<pubDate>Wed, 03 Jun 2009 11:13:41 +0000</pubDate>
		<dc:creator>Tadeusz Szewczyk</dc:creator>
				<category><![CDATA[Bullshit]]></category>
		<category><![CDATA[Findability]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SEO 2.0]]></category>

		<guid isPermaLink="false">http://seo2.0.onreact.com/?p=690</guid>
		<description><![CDATA[<p><a rel="attachment wp-att-691" href="http://seo2.0.onreact.com/bing-fail/bing-fail-seo-2-0"><img class="alignnone size-full wp-image-691" title="bing-fail-seo-2-0" src="http://seo2.0.onreact.com/wp-content/uploads/2009/06/bing-fail-seo-2-0.gif" alt="bing-fail-seo-2-0" width="500" height="512" /></a></p>
<p><strong>Bing FAIL:</strong> <em>This will be a short post, like the headline already suggests.</em> You know, after the <a id="fsh:" title="disastrous performance of Wolfram Alpha" href="../search-8-reasons-why-wolfram-alpha-is-a-waste-of-time-and-no-threat-to-google">disastrous performance of Wolfram Alpha</a> which was falsely hailed as Google competition I&#8217;m not really in the mood to rant again. I will just show you one example.</p>
<blockquote><p>Bing simply doesn&#8217;t work.</p></blockquote>
<p>The first thing I do to test a new search engine is always some vanity searches as in these cases I simply know what the most relevant results are. So I searched for <a id="rsc6" title="SEO 2.0 on Bing" href="http://www.bing.com/search?q=SEO+2.0&amp;first=1&amp;FORM=PERE" target="_blank">SEO 2.0 on Bing</a>. <em>Guess what?</em></p>
<blockquote><p>SEO 2.0 was nowhere to be found on Bing using the phrase SEO 2.0</p></blockquote>
<p>In Google this blog is at #1 and #2 for SEO 2.0 but on Bing it&#8217;s not in the top 50. You get a lot of crap results instead mixed with some good ones but the most important pages are nowhere to be found. It&#8217;s not just this blog: You won&#8217;t find the Mixx SEO 2.0 community (being active for almost 2 years now) in the Bing top 50 for SEO 2.0 either.</p>
<p>So it&#8217;s not that I was banned on Bing or something. You have to search for &#8220;SEO 2.0&#8243; using quotes to find the SEO 2.0 blog. So Bing knows that this page exists but assigns a completely wrong authority to it. In contrast you&#8217;ll find a page offering</p>
<blockquote><p>Guaranteed seo 2.0 first page rank top ten placement and ranking in &#8230;</p></blockquote>
<p>at #1 for SEO 2.0 &#8211; So not a two year old blog with regular postings about SEO 2.0 or in fact the resource that popularized SEO 2.0 ranks but a second rate static page which was optimized on page for a whole group of random SEO related keywords.</p>
<p><em>What more can I say?</em> I&#8217;m not a Google fan boy but <strong>Bing</strong> is a huge <strong>FAIL</strong>. It&#8217;s as simple as that.</p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=690&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/seo-test-default-personalized-search-is-a-myth-it-doesnt-work' rel='bookmark' title='SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work'>SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work</a></li>
<li><a href='http://seo2.0.onreact.com/bonsai-blogging-how-to-fail-with-social-media' rel='bookmark' title='Bonsai Blogging: How to Fail with Social Media'>Bonsai Blogging: How to Fail with Social Media</a></li>
<li><a href='http://seo2.0.onreact.com/seo-speak-translated-the-real-seo-glossary' rel='bookmark' title='SEO Speak Translated: The Real SEO Glossary'>SEO Speak Translated: The Real SEO Glossary</a></li>
</ol></p><div style="display:block"><small><em>by Tadeusz Szewczyk <br />&copy;2012 <a href="http://seo2.0.onreact.com">SEO 2.0</a>. All Rights Reserved.Copyright SEO 2.0 at onreact.com</em></small></div>


Related posts:<ol><li><a href='http://seo2.0.onreact.com/seo-test-default-personalized-search-is-a-myth-it-doesnt-work' rel='bookmark' title='SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work'>SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work</a></li>
<li><a href='http://seo2.0.onreact.com/bonsai-blogging-how-to-fail-with-social-media' rel='bookmark' title='Bonsai Blogging: How to Fail with Social Media'>Bonsai Blogging: How to Fail with Social Media</a></li>
<li><a href='http://seo2.0.onreact.com/seo-speak-translated-the-real-seo-glossary' rel='bookmark' title='SEO Speak Translated: The Real SEO Glossary'>SEO Speak Translated: The Real SEO Glossary</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-691" href="http://seo2.0.onreact.com/bing-fail/bing-fail-seo-2-0"><img class="alignnone size-full wp-image-691" title="bing-fail-seo-2-0" src="http://seo2.0.onreact.com/wp-content/uploads/2009/06/bing-fail-seo-2-0.gif" alt="bing-fail-seo-2-0" width="500" height="512" /></a></p>
<p><strong>Bing FAIL:</strong> <em>This will be a short post, like the headline already suggests.</em> You know, after the <a id="fsh:" title="disastrous performance of Wolfram Alpha" href="../search-8-reasons-why-wolfram-alpha-is-a-waste-of-time-and-no-threat-to-google">disastrous performance of Wolfram Alpha</a> which was falsely hailed as Google competition I&#8217;m not really in the mood to rant again. I will just show you one example.</p>
<blockquote><p>Bing simply doesn&#8217;t work.</p></blockquote>
<p>The first thing I do to test a new search engine is always some vanity searches as in these cases I simply know what the most relevant results are. So I searched for <a id="rsc6" title="SEO 2.0 on Bing" href="http://www.bing.com/search?q=SEO+2.0&amp;first=1&amp;FORM=PERE" target="_blank">SEO 2.0 on Bing</a>. <em>Guess what?</em></p>
<blockquote><p>SEO 2.0 was nowhere to be found on Bing using the phrase SEO 2.0</p></blockquote>
<p>In Google this blog is at #1 and #2 for SEO 2.0 but on Bing it&#8217;s not in the top 50. You get a lot of crap results instead mixed with some good ones but the most important pages are nowhere to be found. It&#8217;s not just this blog: You won&#8217;t find the Mixx SEO 2.0 community (being active for almost 2 years now) in the Bing top 50 for SEO 2.0 either.</p>
<p>So it&#8217;s not that I was banned on Bing or something. You have to search for &#8220;SEO 2.0&#8243; using quotes to find the SEO 2.0 blog. So Bing knows that this page exists but assigns a completely wrong authority to it. In contrast you&#8217;ll find a page offering</p>
<blockquote><p>Guaranteed seo 2.0 first page rank top ten placement and ranking in &#8230;</p></blockquote>
<p>at #1 for SEO 2.0 &#8211; So not a two year old blog with regular postings about SEO 2.0 or in fact the resource that popularized SEO 2.0 ranks but a second rate static page which was optimized on page for a whole group of random SEO related keywords.</p>
<p><em>What more can I say?</em> I&#8217;m not a Google fan boy but <strong>Bing</strong> is a huge <strong>FAIL</strong>. It&#8217;s as simple as that.</p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=690&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/seo-test-default-personalized-search-is-a-myth-it-doesnt-work' rel='bookmark' title='SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work'>SEO Test: Default Personalized Search is a Myth &#8211; It Doesn&#8217;t Work</a></li>
<li><a href='http://seo2.0.onreact.com/bonsai-blogging-how-to-fail-with-social-media' rel='bookmark' title='Bonsai Blogging: How to Fail with Social Media'>Bonsai Blogging: How to Fail with Social Media</a></li>
<li><a href='http://seo2.0.onreact.com/seo-speak-translated-the-real-seo-glossary' rel='bookmark' title='SEO Speak Translated: The Real SEO Glossary'>SEO Speak Translated: The Real SEO Glossary</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seo2.0.onreact.com/bing-fail/feed</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>User and Search Friendly URL Design for Multi-Language Websites in 4 Easy Steps</title>
		<link>http://seo2.0.onreact.com/user-and-search-friendly-url-design-for-multi-language-websites-in-4-easy-steps</link>
		<comments>http://seo2.0.onreact.com/user-and-search-friendly-url-design-for-multi-language-websites-in-4-easy-steps#comments</comments>
		<pubDate>Mon, 25 May 2009 14:42:12 +0000</pubDate>
		<dc:creator>Tadeusz Szewczyk</dc:creator>
				<category><![CDATA[Findability]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://seo2.0.onreact.com/?p=676</guid>
		<description><![CDATA[<p>What an overwhelming headline! <strong>User and search friendly <a href="http://seo2.0.onreact.com/top-10-fatal-url-design-mistakes">URL design</a> for multi-language websites</strong>? <em>What are you talking about?</em> Let me explain. Then I&#8217;ll introduce to you the <strong>4 easy steps</strong> you need to follow.</p>
<blockquote><p>One of the basic best practices of SEO are user and search friendly URLs. URLs are simply Internet addresses like something.com/more/details</p></blockquote>
<p><strong>Step 1: Make URLs user and search friendly</strong><br />
My example is already both user and search friendly. It&#8217;s readable and understandable (you sometimes even call them speaking URLs). So you already know that we talk about &#8220;something&#8221;, &#8220;more&#8221; of it and some &#8220;details&#8221;. A better example would be</p>
<p><span style="font-family: Courier New;">ford.com/cars/ford-focus </span></p>
<p>Here we quickly notice that the page deals with a Ford car by the name of Focus.<br />
The actual Ford site is almost as good, but that would be the ideal URL structure. It&#8217;s also perfect for Google and other search engines as it already includes both keywords and a site structure with cars being a folder or rather directory and ford-focus a specific page out of similar ones in this directory.</p>
<p>Now consider an international site. Ford is a good example here as the Ford Focus gets sold in Europe too. In Europe people speak a few dozens of different languages. Just covering the more important ones like</p>
<ul>
<li>Spanish</li>
<li>French</li>
<li>German</li>
<li>Polish</li>
<li>Russian</li>
</ul>
<p>is not an easy task. It starts with the URLs. Let&#8217;s assume Ford.com would be a multi-language site, that is a site that covers all those languages. In contrast there are plenty of companies who prefer separate domains for each country like</p>
<ul>
<li>ford.es</li>
<li>ford.fr</li>
<li>ford.de</li>
</ul>
<p>etc. Maintaining so many sites is quite an effort though. So many companies of smaller scale won&#8217;t operate an extra site for each country. You should reserve a domain for each at least even if you plan just to use one.</p>
<p>Let&#8217;s assume though that Ford.com would develop a multi-language website including all those languages. We would encounter several problems as each of these languages has special characters other&#8217;s don&#8217;t and Google has some difficulties with. I don&#8217;t want to focus (what a pun! ;-) on those.</p>
<p>Let&#8217;s also assume that we don&#8217;t deal (yet) with the special characters. Let&#8217;s talk about the standard procedure for user and SEO friendly URL design for multi-language websites.</p>
<p><strong>Step 2: Separate URLs</strong><br />
What&#8217;s most important: You need separate URLs for each language! No joke. There are sites that have several languages on the same page (using the same URL).<br />
Depending on you browser language, IP or according to your choice the content language changes but the URL stays the same. This way you would view ford.com/cars/ford-focus from Spain and see the page in Spanish, from France in French ans so on while in the US it still would be displayed in English. This is the worst case scenario from a SEO perspective. Google will only index the English version. Your site won&#8217;t get found on local Google search at all. Plus the automatic setting of languages doesn&#8217;t work as desired in many cases. American expats in Spain get the Spanish version in spite of not speaking Spanish for instance.</p>
<p>A simple and SEO wise good solution would be adding a directory (or virtual one) for each specific language.<br />
Thus we would end up having:</p>
<p><span style="font-family: Courier New;">ford.com/es/cars/ford-focus</span><br style="font-family: Courier New;" /><span style="font-family: Courier New;">ford.com/fr/cars/ford-focus</span><br style="font-family: Courier New;" /><span style="font-family: Courier New;">ford.com/de/cars/ford-focus</span></p>
<p><strong>Step 3: Translate URLs</strong><br />
That&#8217;s almost fine but there is one problem: You use the English word or keyword &#8220;cars&#8221; for the Spanish and French version. In France people even can get angry at you for doing that.<br />
As I&#8217;m doing SEO in Germany I&#8217;ll use the German examples from now on. The next step is translating the URLs as well:</p>
<p><span style="font-family: Courier New;">ford.com/de/autos/ford-focus</span></p>
<p>You see that the product name remains the same but the keyword describing it &#8220;cars&#8221; changes to the German &#8220;autos&#8221;. We would be happy here as users and website optimizers but in most cases the programmers behind the content management system will cry out and telly you that it does not work that way.</p>
<p><strong>Step 4: Add URL numbers</strong><br />
You can&#8217;t create different pages with varying for each language without risking chaos.</p>
<p>So we need a small change in the URL structure and we will tell them that so called URL rewriting (in most cases using the so called mod_Rewrite module for Apache) will suffice.</p>
<p>The simplest way to deal with this issue is adding a unique number to each page. This number stays the same across the languages to allow handling the same pages across multiple pages with much hassle.</p>
<p>So we end having something like this:</p>
<p><span style="font-family: Courier New;">ford.com/de/autos/ford-focus/1234</span></p>
<p>take note that &#8220;1234&#8243; is a random number here, it could apply to the data set number or page number or whatever you choose to count. It has to be assign just once for a single URL and stay permanent. It&#8217;s not a session ID or something like that. Also take note that I added the number at the end. This is to prevent Google from assigning too much authority to the number as directory &#8220;name&#8221;.</p>
<p>Make sure that an URL like this can always get identified just by the number. So <span style="font-family: Courier New;">ford.com/1234</span> should still lead to the same page at <span style="font-family: Courier New;">ford.com/de/autos/ford-focus/1234</span><br />
This also works with WordPress blogs. Having numbers in the URL allows you to change the keywords in it or mistype it without breaking it.</p>
<p>We&#8217;re done. Now we can optimize a littel if we like to.</p>
<p><strong>Step 5: Optimize URLs</strong><br />
This step is already optional. Some of you might argue that an URL like the above ford.com/de/autos/ford-focus/1234 still has some issues. For instance it mentions ford twice which is a little too much if you ask me. It looks like SEO out of 1999.</p>
<p>So you could cut the second &#8220;ford&#8221; in &#8220;ford-focus&#8221;. This results in:</p>
<p><span style="font-family: Courier New;">ford.com/de/autos/focus/1234</span></p>
<p>Also if you change cars to autos earlier on you don&#8217;t need the &#8220;de&#8221;. You could use</p>
<p><span style="font-family: Courier New;">ford.com/autos/focus/1234 </span></p>
<p>instead as &#8220;autos&#8221; applies to the German part of the site only. The English site says <span style="font-family: Courier New;">ford.com/cars/focus/1234</span></p>
<p>Now we&#8217;re really done. At this point we&#8217;ll probably face the special characters issues with so called umlauts (äöü) for instance but that&#8217;s another post. So you see the basic <strong>user and search friendly URL design for multi-language websites</strong> is no voodoo at all. <em>4 easy steps are enough.</em></p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=676&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/top-10-url-design-failures-of-famous-websites' rel='bookmark' title='Top 10 URL Design Failures of Famous Websites'>Top 10 URL Design Failures of Famous Websites</a></li>
<li><a href='http://seo2.0.onreact.com/top-5-digg-like-international-social-news-communities' rel='bookmark' title='Digg-Like International Social News Communities'>Digg-Like International Social News Communities</a></li>
<li><a href='http://seo2.0.onreact.com/top-10-fatal-url-design-mistakes' rel='bookmark' title='Top 10 Fatal URL Design Mistakes'>Top 10 Fatal URL Design Mistakes</a></li>
</ol></p><div style="display:block"><small><em>by Tadeusz Szewczyk <br />&copy;2012 <a href="http://seo2.0.onreact.com">SEO 2.0</a>. All Rights Reserved.Copyright SEO 2.0 at onreact.com</em></small></div>


Related posts:<ol><li><a href='http://seo2.0.onreact.com/top-10-url-design-failures-of-famous-websites' rel='bookmark' title='Top 10 URL Design Failures of Famous Websites'>Top 10 URL Design Failures of Famous Websites</a></li>
<li><a href='http://seo2.0.onreact.com/top-5-digg-like-international-social-news-communities' rel='bookmark' title='Digg-Like International Social News Communities'>Digg-Like International Social News Communities</a></li>
<li><a href='http://seo2.0.onreact.com/top-10-fatal-url-design-mistakes' rel='bookmark' title='Top 10 Fatal URL Design Mistakes'>Top 10 Fatal URL Design Mistakes</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>What an overwhelming headline! <strong>User and search friendly <a href="http://seo2.0.onreact.com/top-10-fatal-url-design-mistakes">URL design</a> for multi-language websites</strong>? <em>What are you talking about?</em> Let me explain. Then I&#8217;ll introduce to you the <strong>4 easy steps</strong> you need to follow.</p>
<blockquote><p>One of the basic best practices of SEO are user and search friendly URLs. URLs are simply Internet addresses like something.com/more/details</p></blockquote>
<p><strong>Step 1: Make URLs user and search friendly</strong><br />
My example is already both user and search friendly. It&#8217;s readable and understandable (you sometimes even call them speaking URLs). So you already know that we talk about &#8220;something&#8221;, &#8220;more&#8221; of it and some &#8220;details&#8221;. A better example would be</p>
<p><span style="font-family: Courier New;">ford.com/cars/ford-focus </span></p>
<p>Here we quickly notice that the page deals with a Ford car by the name of Focus.<br />
The actual Ford site is almost as good, but that would be the ideal URL structure. It&#8217;s also perfect for Google and other search engines as it already includes both keywords and a site structure with cars being a folder or rather directory and ford-focus a specific page out of similar ones in this directory.</p>
<p>Now consider an international site. Ford is a good example here as the Ford Focus gets sold in Europe too. In Europe people speak a few dozens of different languages. Just covering the more important ones like</p>
<ul>
<li>Spanish</li>
<li>French</li>
<li>German</li>
<li>Polish</li>
<li>Russian</li>
</ul>
<p>is not an easy task. It starts with the URLs. Let&#8217;s assume Ford.com would be a multi-language site, that is a site that covers all those languages. In contrast there are plenty of companies who prefer separate domains for each country like</p>
<ul>
<li>ford.es</li>
<li>ford.fr</li>
<li>ford.de</li>
</ul>
<p>etc. Maintaining so many sites is quite an effort though. So many companies of smaller scale won&#8217;t operate an extra site for each country. You should reserve a domain for each at least even if you plan just to use one.</p>
<p>Let&#8217;s assume though that Ford.com would develop a multi-language website including all those languages. We would encounter several problems as each of these languages has special characters other&#8217;s don&#8217;t and Google has some difficulties with. I don&#8217;t want to focus (what a pun! ;-) on those.</p>
<p>Let&#8217;s also assume that we don&#8217;t deal (yet) with the special characters. Let&#8217;s talk about the standard procedure for user and SEO friendly URL design for multi-language websites.</p>
<p><strong>Step 2: Separate URLs</strong><br />
What&#8217;s most important: You need separate URLs for each language! No joke. There are sites that have several languages on the same page (using the same URL).<br />
Depending on you browser language, IP or according to your choice the content language changes but the URL stays the same. This way you would view ford.com/cars/ford-focus from Spain and see the page in Spanish, from France in French ans so on while in the US it still would be displayed in English. This is the worst case scenario from a SEO perspective. Google will only index the English version. Your site won&#8217;t get found on local Google search at all. Plus the automatic setting of languages doesn&#8217;t work as desired in many cases. American expats in Spain get the Spanish version in spite of not speaking Spanish for instance.</p>
<p>A simple and SEO wise good solution would be adding a directory (or virtual one) for each specific language.<br />
Thus we would end up having:</p>
<p><span style="font-family: Courier New;">ford.com/es/cars/ford-focus</span><br style="font-family: Courier New;" /><span style="font-family: Courier New;">ford.com/fr/cars/ford-focus</span><br style="font-family: Courier New;" /><span style="font-family: Courier New;">ford.com/de/cars/ford-focus</span></p>
<p><strong>Step 3: Translate URLs</strong><br />
That&#8217;s almost fine but there is one problem: You use the English word or keyword &#8220;cars&#8221; for the Spanish and French version. In France people even can get angry at you for doing that.<br />
As I&#8217;m doing SEO in Germany I&#8217;ll use the German examples from now on. The next step is translating the URLs as well:</p>
<p><span style="font-family: Courier New;">ford.com/de/autos/ford-focus</span></p>
<p>You see that the product name remains the same but the keyword describing it &#8220;cars&#8221; changes to the German &#8220;autos&#8221;. We would be happy here as users and website optimizers but in most cases the programmers behind the content management system will cry out and telly you that it does not work that way.</p>
<p><strong>Step 4: Add URL numbers</strong><br />
You can&#8217;t create different pages with varying for each language without risking chaos.</p>
<p>So we need a small change in the URL structure and we will tell them that so called URL rewriting (in most cases using the so called mod_Rewrite module for Apache) will suffice.</p>
<p>The simplest way to deal with this issue is adding a unique number to each page. This number stays the same across the languages to allow handling the same pages across multiple pages with much hassle.</p>
<p>So we end having something like this:</p>
<p><span style="font-family: Courier New;">ford.com/de/autos/ford-focus/1234</span></p>
<p>take note that &#8220;1234&#8243; is a random number here, it could apply to the data set number or page number or whatever you choose to count. It has to be assign just once for a single URL and stay permanent. It&#8217;s not a session ID or something like that. Also take note that I added the number at the end. This is to prevent Google from assigning too much authority to the number as directory &#8220;name&#8221;.</p>
<p>Make sure that an URL like this can always get identified just by the number. So <span style="font-family: Courier New;">ford.com/1234</span> should still lead to the same page at <span style="font-family: Courier New;">ford.com/de/autos/ford-focus/1234</span><br />
This also works with WordPress blogs. Having numbers in the URL allows you to change the keywords in it or mistype it without breaking it.</p>
<p>We&#8217;re done. Now we can optimize a littel if we like to.</p>
<p><strong>Step 5: Optimize URLs</strong><br />
This step is already optional. Some of you might argue that an URL like the above ford.com/de/autos/ford-focus/1234 still has some issues. For instance it mentions ford twice which is a little too much if you ask me. It looks like SEO out of 1999.</p>
<p>So you could cut the second &#8220;ford&#8221; in &#8220;ford-focus&#8221;. This results in:</p>
<p><span style="font-family: Courier New;">ford.com/de/autos/focus/1234</span></p>
<p>Also if you change cars to autos earlier on you don&#8217;t need the &#8220;de&#8221;. You could use</p>
<p><span style="font-family: Courier New;">ford.com/autos/focus/1234 </span></p>
<p>instead as &#8220;autos&#8221; applies to the German part of the site only. The English site says <span style="font-family: Courier New;">ford.com/cars/focus/1234</span></p>
<p>Now we&#8217;re really done. At this point we&#8217;ll probably face the special characters issues with so called umlauts (äöü) for instance but that&#8217;s another post. So you see the basic <strong>user and search friendly URL design for multi-language websites</strong> is no voodoo at all. <em>4 easy steps are enough.</em></p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=676&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/top-10-url-design-failures-of-famous-websites' rel='bookmark' title='Top 10 URL Design Failures of Famous Websites'>Top 10 URL Design Failures of Famous Websites</a></li>
<li><a href='http://seo2.0.onreact.com/top-5-digg-like-international-social-news-communities' rel='bookmark' title='Digg-Like International Social News Communities'>Digg-Like International Social News Communities</a></li>
<li><a href='http://seo2.0.onreact.com/top-10-fatal-url-design-mistakes' rel='bookmark' title='Top 10 Fatal URL Design Mistakes'>Top 10 Fatal URL Design Mistakes</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seo2.0.onreact.com/user-and-search-friendly-url-design-for-multi-language-websites-in-4-easy-steps/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>7 Effective Moving Content to a New Domain Manuals</title>
		<link>http://seo2.0.onreact.com/7-effective-moving-content-to-a-new-domain-manuals</link>
		<comments>http://seo2.0.onreact.com/7-effective-moving-content-to-a-new-domain-manuals#comments</comments>
		<pubDate>Mon, 23 Mar 2009 11:54:33 +0000</pubDate>
		<dc:creator>Tadeusz Szewczyk</dc:creator>
				<category><![CDATA[Findability]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://seo2.0.onreact.com/?p=571</guid>
		<description><![CDATA[<p><img class="alignnone size-full wp-image-572" title="your-move-durotriges" src="http://seo2.0.onreact.com/wp-content/uploads/2009/03/your-move-durotriges.jpg" alt="your-move-durotriges" width="400" height="328" /></p>
<p>CC: Your Move by <a href="http://www.flickr.com/photos/durotriges/215248008/" target="_blank">Durotriges</a>.</p>
<p>A buddy of mine, <a href="http://twitter.com/styletime" target="_blank">styletime, Twitter power user</a> and <a href="http://on.eti.me/" target="_blank">one</a> of the <a href="http://seo2.0.onreact.com/10-new-must-read-seo-online-marketing-and-web-development-blogs" target="_blank">brightest new bloggers</a> asked what else he should you look after when <strong>moving content to a new domain</strong> or blog beyond using an <a id="bjuz" title="indispensable 301 redirect" href="http://www.clickz.com/3625266" target="_blank">indispensable 301 redirect</a>.</p>
<p>For those who are new to SEO:</p>
<blockquote><p><a id="ij6a" title="When you don't use a so called 301 permanent redirect" href="http://www.seroundtable.com/archives/015971.html" target="_blank">When you don&#8217;t use a so called 301 permanent redirect</a> to tell Google you moved it&#8217;s like changing your real life address and telling nobody where you&#8217;re at from now on. <em></em></p></blockquote>
<p><em>Nobody will find you.</em></p>
<p><img class="alignnone size-full wp-image-573" title="moving-a-tree-statosphere" src="http://seo2.0.onreact.com/wp-content/uploads/2009/03/moving-a-tree-statosphere.jpg" alt="moving-a-tree-statosphere" width="400" height="268" /></p>
<p>CC: Moving a Tree 1 by <a href="http://www.flickr.com/photos/sathishcj/303989645/" target="_blank">Satosphere</a>.</p>
<p>There are several excellent effective howto&#8217;s, tutorials or manuals out there to tell Google and users your whereabouts. They all differ a little so I decided to compile a list of <strong>7 effective &#8220;moving content to a new domain&#8221; Manuals</strong>. Most of them are from highly trustworthy SEO professionals, one is from Google itself:</p>
<ol>
<li><a href="http://www.searchengineguide.com/stoney-degeyter/how-to-move-to-a-new-domain-with-minimal.php">How to Move to a New Domain With Minimal Ranking Loss and Downtime &#8211; Search Engine Guide Blog</a></li>
<li><a href="http://ask.enquiro.com/2008/how-to-move-your-site-to-a-new-domain-according-to-google/">How to Move Your Site to a New Domain According to Google | Ask Enquiro</a></li>
<li><a href="http://www.seomoz.org/blog/expectations-and-best-practices-for-moving-to-or-launching-a-new-domain">SEOmoz | Expectations and Best Practices for Moving to or Launching a New Domain</a></li>
<li><a href="http://www.ragepank.com/articles/97/seo-issues-with-moving-a-domain/">SEO issues with moving a domain | RagePank SEO</a></li>
<li><a href="http://www.bruceclay.com/blog/archives/2008/11/how_to_move_you.html">Bruceclay.com &#8211; How to Move Your Web Site without Chaos &#8211; SEO Blog</a></li>
<li><a href="http://googlewebmastercentral.blogspot.com/2008/04/best-practices-when-moving-your-site.html">Official Google Webmaster Central Blog: Best practices when moving your site</a></li>
<li><a href="http://www.seobook.com/archives/002343.shtml">How to: Move a Website&#8230;Should You Fear 301 Redirects Hurting Your Rankings? : SEO Book.com</a></li>
</ol>
<p><img class="alignnone size-full wp-image-574" title="moving-always-moving-code-poet" src="http://seo2.0.onreact.com/wp-content/uploads/2009/03/moving-always-moving-code-poet.jpg" alt="moving-always-moving-code-poet" width="500" height="296" /></p>
<p>CC: Moving, Always Moving by <a href="http://www.flickr.com/photos/alphageek/286574544/" target="_blank">code poet</a>.</p>
<p>On a side note: There is an old saying for programmers:<br />
<em>Never touch a running system.</em> This means: When it works don&#8217;t change it. Likewise: When you rank high in Google, don&#8217;t move. New domains are bad for SEO.</p>
<blockquote><p>Only move your website or content if you have no other option.</p></blockquote>
<p>Also don&#8217;t mix moving your content to a new domain up with changing hosting. <a id="ctuu" title="Changing your server works best like that" href="http://www.mattcutts.com/blog/moving-to-a-new-web-host/" target="_blank">Changing your server has been explained by Matt Cutts of Google himself</a>.</p>
<p><a href="http://seo2.0.onreact.com/7-effective-moving-content-to-a-new-domain-manuals/city-bike-wire-bike"><br />
</a></p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=571&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/authority-and-trustrank' rel='bookmark' title='Authority and Trustrank'>Authority and Trustrank</a></li>
<li><a href='http://seo2.0.onreact.com/how-i-outranked-matt-cutts-for-the-term-seo-in-7-easy-steps' rel='bookmark' title='How I Outranked Matt Cutts for the Term SEO in 7 Easy Steps'>How I Outranked Matt Cutts for the Term SEO in 7 Easy Steps</a></li>
<li><a href='http://seo2.0.onreact.com/seo-20-basics-wordpress-url-design' rel='bookmark' title='SEO 2.0 Basics: WordPress URL Design'>SEO 2.0 Basics: WordPress URL Design</a></li>
</ol></p><div style="display:block"><small><em>by Tadeusz Szewczyk <br />&copy;2012 <a href="http://seo2.0.onreact.com">SEO 2.0</a>. All Rights Reserved.Copyright SEO 2.0 at onreact.com</em></small></div>


Related posts:<ol><li><a href='http://seo2.0.onreact.com/authority-and-trustrank' rel='bookmark' title='Authority and Trustrank'>Authority and Trustrank</a></li>
<li><a href='http://seo2.0.onreact.com/how-i-outranked-matt-cutts-for-the-term-seo-in-7-easy-steps' rel='bookmark' title='How I Outranked Matt Cutts for the Term SEO in 7 Easy Steps'>How I Outranked Matt Cutts for the Term SEO in 7 Easy Steps</a></li>
<li><a href='http://seo2.0.onreact.com/seo-20-basics-wordpress-url-design' rel='bookmark' title='SEO 2.0 Basics: WordPress URL Design'>SEO 2.0 Basics: WordPress URL Design</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-572" title="your-move-durotriges" src="http://seo2.0.onreact.com/wp-content/uploads/2009/03/your-move-durotriges.jpg" alt="your-move-durotriges" width="400" height="328" /></p>
<p>CC: Your Move by <a href="http://www.flickr.com/photos/durotriges/215248008/" target="_blank">Durotriges</a>.</p>
<p>A buddy of mine, <a href="http://twitter.com/styletime" target="_blank">styletime, Twitter power user</a> and <a href="http://on.eti.me/" target="_blank">one</a> of the <a href="http://seo2.0.onreact.com/10-new-must-read-seo-online-marketing-and-web-development-blogs" target="_blank">brightest new bloggers</a> asked what else he should you look after when <strong>moving content to a new domain</strong> or blog beyond using an <a id="bjuz" title="indispensable 301 redirect" href="http://www.clickz.com/3625266" target="_blank">indispensable 301 redirect</a>.</p>
<p>For those who are new to SEO:</p>
<blockquote><p><a id="ij6a" title="When you don't use a so called 301 permanent redirect" href="http://www.seroundtable.com/archives/015971.html" target="_blank">When you don&#8217;t use a so called 301 permanent redirect</a> to tell Google you moved it&#8217;s like changing your real life address and telling nobody where you&#8217;re at from now on. <em></em></p></blockquote>
<p><em>Nobody will find you.</em></p>
<p><img class="alignnone size-full wp-image-573" title="moving-a-tree-statosphere" src="http://seo2.0.onreact.com/wp-content/uploads/2009/03/moving-a-tree-statosphere.jpg" alt="moving-a-tree-statosphere" width="400" height="268" /></p>
<p>CC: Moving a Tree 1 by <a href="http://www.flickr.com/photos/sathishcj/303989645/" target="_blank">Satosphere</a>.</p>
<p>There are several excellent effective howto&#8217;s, tutorials or manuals out there to tell Google and users your whereabouts. They all differ a little so I decided to compile a list of <strong>7 effective &#8220;moving content to a new domain&#8221; Manuals</strong>. Most of them are from highly trustworthy SEO professionals, one is from Google itself:</p>
<ol>
<li><a href="http://www.searchengineguide.com/stoney-degeyter/how-to-move-to-a-new-domain-with-minimal.php">How to Move to a New Domain With Minimal Ranking Loss and Downtime &#8211; Search Engine Guide Blog</a></li>
<li><a href="http://ask.enquiro.com/2008/how-to-move-your-site-to-a-new-domain-according-to-google/">How to Move Your Site to a New Domain According to Google | Ask Enquiro</a></li>
<li><a href="http://www.seomoz.org/blog/expectations-and-best-practices-for-moving-to-or-launching-a-new-domain">SEOmoz | Expectations and Best Practices for Moving to or Launching a New Domain</a></li>
<li><a href="http://www.ragepank.com/articles/97/seo-issues-with-moving-a-domain/">SEO issues with moving a domain | RagePank SEO</a></li>
<li><a href="http://www.bruceclay.com/blog/archives/2008/11/how_to_move_you.html">Bruceclay.com &#8211; How to Move Your Web Site without Chaos &#8211; SEO Blog</a></li>
<li><a href="http://googlewebmastercentral.blogspot.com/2008/04/best-practices-when-moving-your-site.html">Official Google Webmaster Central Blog: Best practices when moving your site</a></li>
<li><a href="http://www.seobook.com/archives/002343.shtml">How to: Move a Website&#8230;Should You Fear 301 Redirects Hurting Your Rankings? : SEO Book.com</a></li>
</ol>
<p><img class="alignnone size-full wp-image-574" title="moving-always-moving-code-poet" src="http://seo2.0.onreact.com/wp-content/uploads/2009/03/moving-always-moving-code-poet.jpg" alt="moving-always-moving-code-poet" width="500" height="296" /></p>
<p>CC: Moving, Always Moving by <a href="http://www.flickr.com/photos/alphageek/286574544/" target="_blank">code poet</a>.</p>
<p>On a side note: There is an old saying for programmers:<br />
<em>Never touch a running system.</em> This means: When it works don&#8217;t change it. Likewise: When you rank high in Google, don&#8217;t move. New domains are bad for SEO.</p>
<blockquote><p>Only move your website or content if you have no other option.</p></blockquote>
<p>Also don&#8217;t mix moving your content to a new domain up with changing hosting. <a id="ctuu" title="Changing your server works best like that" href="http://www.mattcutts.com/blog/moving-to-a-new-web-host/" target="_blank">Changing your server has been explained by Matt Cutts of Google himself</a>.</p>
<p><a href="http://seo2.0.onreact.com/7-effective-moving-content-to-a-new-domain-manuals/city-bike-wire-bike"><br />
</a></p>
<img src="http://seo2.0.onreact.com/?ak_action=api_record_view&id=571&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://seo2.0.onreact.com/authority-and-trustrank' rel='bookmark' title='Authority and Trustrank'>Authority and Trustrank</a></li>
<li><a href='http://seo2.0.onreact.com/how-i-outranked-matt-cutts-for-the-term-seo-in-7-easy-steps' rel='bookmark' title='How I Outranked Matt Cutts for the Term SEO in 7 Easy Steps'>How I Outranked Matt Cutts for the Term SEO in 7 Easy Steps</a></li>
<li><a href='http://seo2.0.onreact.com/seo-20-basics-wordpress-url-design' rel='bookmark' title='SEO 2.0 Basics: WordPress URL Design'>SEO 2.0 Basics: WordPress URL Design</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://seo2.0.onreact.com/7-effective-moving-content-to-a-new-domain-manuals/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

