<?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>Make it Rank</title>
	<atom:link href="http://makeitrank.com/feed" rel="self" type="application/rss+xml" />
	<link>http://makeitrank.com</link>
	<description>SEO and WordPress Tips</description>
	<lastBuildDate>Tue, 14 Aug 2012 01:05:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>When do SEOs Tweet?</title>
		<link>http://makeitrank.com/times-to-tweet</link>
		<comments>http://makeitrank.com/times-to-tweet#comments</comments>
		<pubDate>Mon, 13 Aug 2012 04:08:21 +0000</pubDate>
		<dc:creator>kevinmspence</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://makeitrank.com/?p=1848</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://makeitrank.com/times-to-tweet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protect your content from scrapers, aggregators, and other scary creatures</title>
		<link>http://makeitrank.com/keep-content-safe</link>
		<comments>http://makeitrank.com/keep-content-safe#comments</comments>
		<pubDate>Mon, 06 Aug 2012 14:31:07 +0000</pubDate>
		<dc:creator>kevinmspence</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://makeitrank.com/?p=1759</guid>
		<description><![CDATA[Creating great content is hard work. It requires hours of researching, rewriting, and editing. And if you&#8217;re like me, you spend just as much time agonizing over the perfect picture [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://makeitrank.com/wp-content/uploads/2012/08/wild-things-are.jpg" alt="scanned image from where the wild things are" title="where the wild things are" width="650" height="420" class="aligncenter size-full wp-image-1829" /></p>
<p>Creating great content is hard work. It requires hours of researching, rewriting, and editing. And if you&#8217;re like me, you spend just as much time agonizing over the perfect picture to include in your post. Before you hit publish, you&#8217;re certain that you&#8217;ve done everything you could to create a massively successful piece of content that will drive tons of traffic.</p>
<p>But <b>what you might not know</b> is that there are people waiting to take (and get credit for) your content the moment you hit the publish button. It happens all the time: scrapers and content aggregators take other people&#8217;s content, publish it, and outrank the truly original source in Google.</p>
<p>One of the most common reasons this can happen is that aggregators take your newly published content and get their copy indexed before you do. Sometimes, Google will assume that the <i>aggregator</i> is the original author, and that you republished <i>their</i> content. This can lead to a loss of traffic, or worse, being caught in the Panda filter.</p>
<p>Now, there&#8217;s nothing we can do to change the way that Google works. But the good news is that there are some things we can do on our own sites to prevent this type of thing from happening.</p>
<p>Below, I&#8217;m going to show you a few tactics that you can use on any WordPress site to make sure that Google always indexes <i>your</i> content first. Follow these steps, and you will always get authorship credit for the content that you create.</p>
<h3>1. Delay your RSS feed</h3>
<p>RSS feeds can be great traffic drivers if you have a lot of subscribers. But what you might not know is that RSS feeds make it really easy for people to take and distribute your content however they see fit.</p>
<p>I don&#8217;t have a problem with people distributing my content in general, but I do have a problem with someone else getting authorship credit (and outranking me) for something that I wrote. To make sure that my content gets indexed before anybody else can take it from my feed, I like to delay the RSS build.</p>
<p>On this particular site, my new content is normally in Google&#8217;s index within a minute or two after I publish it. Sometimes it can take a little longer, so to be safe, I delay my RSS build so it doesn&#8217;t show new content for 10 minutes after it&#8217;s published. This way, Google has plenty of time to index the post before anybody else is able to consume it through RSS.</p>
<p>Changing the RSS wait time is simple. Just copy and paste the following code into functions.php. To change the amount of time you want to wait before building the feed, change the value of the $wait variable.</p>
<pre class="wp-code-highlight prettyprint">
function publish_later($where) {

	global $wpdb;

	if ( is_feed() ) {
		// get the WordPress timestamp
		$now = gmdate('Y-m-d H:i:s');

		// set the amount of time that you want to wait before building the feed
		$wait = '5'; // integer

                // now define the unit of time that you would like to wait
		$device = 'MINUTE'; //MINUTE, HOUR, DAY, WEEK, MONTH, YEAR

		// now we turn the timestamp into a format that MYSQL can understand
		$where .= &quot; AND TIMESTAMPDIFF($device, $wpdb-&gt;posts.post_date_gmt, '$now') &gt; $wait &quot;;
	}
	return $where;
}

add_filter('posts_where', 'publish_later');

</pre>
<h3>2. Turn off auto cache clearing</h3>
<p>If you&#8217;re not using a caching plugin on your site, you really should be. These plugins take a lot of strain off your database, and generally result in a website that loads more quickly than one without a caching plugin (<a href="http://wordpress.org/extend/plugins/wp-super-cache/" title="wp super cache" target="_blank">WP Super Cache</a> and <a href="http://wordpress.org/extend/plugins/w3-total-cache/" title="w3 total cache" target="_blank">W3 Total Cache</a> are good options).</p>
<p>Most (if not all) of the available WordPress caching plugins have a setting that clears the cache each time you publish a new post. This is a great idea in theory (and it&#8217;s just fine for authority sites), but it also gives scrapers a chance to grab your content before Google indexes it.</p>
<p>To combat this, turn off the function that automatically clears the cache each time you publish a new post (found within the settings of your caching plugin). Once your post is in the index, manually clear the cache through your plugin&#8217;s admin panel. This way, any scrapers who hit your site before your new content is indexed will not see the new content.</p>
<h3>3. Give your sitemap a funky name</h3>
<p>One of the easiest ways to scrape the entirety of someone&#8217;s site is by using the sitemap as a starting point and then following all the links. Since most sitemaps include every piece of content on a particular site, this is by far the easiest method of content discovery for scrapers.</p>
<p>We don&#8217;t want to make it any easier for scrapers than it has to be, but we also need our sitemap to be updated right away so Google can quickly find and index the new post.</p>
<p>Most people name their sitemap sitemap.xml, or something very similar. Almost every WordPress site uses this convention, as it&#8217;s the default setting for just about every sitemap plugin. I would encourage you to name your sitemap something else. Maybe your dog&#8217;s name, or even a random string of characters. This will make it very difficult to randomly guess the location of the sitemap.</p>
<p>Additionally, you will want to turn off the setting that shows your sitemap&#8217;s location in robots.txt. If you&#8217;re using the popular <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" title="google sitemap generator" target="_blank">Google XML Sitemap Generator</a> plugin, you can do that like this:</p>
<p><img src="http://makeitrank.com/wp-content/uploads/2012/08/sitemap-robots.png" alt="screenshot of setting to remove the sitemap from robots" title="sitemap robots" width="535" height="49" class="alignnone size-full wp-image-1805" /></p>
<p>Removing the location from robots.txt will not hurt you at all, as long as you submit your sitemap in Google and Bing webmaster tools. Aside from those guys, nobody needs to see it anyway.</p>
<h3>4. Submit your new post through Google Webmaster Tools</h3>
<p>This is one of my favorite features of Google Webmaster tools, and a lot of people don&#8217;t know that it exists. If you have a new website, it take some time for Google to index your new content after you publish a post. This tip will speed up the indexing process significantly.</p>
<p>As soon as you publish a new post, login to Webmaster Tools and go to Health->Fetch as Googlebot. Enter the URL you want to submit into the field:</p>
<p><img src="http://makeitrank.com/wp-content/uploads/2012/08/fetch-google-url.png" alt="screenshot of submitting a url to Google" title="" width="786" height="81" class="alignnone size-full wp-image-1807" /></p>
<p>After a moment, a &#8216;submit to index&#8217; button will show like this:</p>
<p><img src="http://makeitrank.com/wp-content/uploads/2012/08/submit-to-index.png" alt="submit to index button" title="" width="288" height="78" class="alignnone size-full wp-image-1809" /></p>
<p>Click it, and your content will be submitted to the index. In my experience, it normally takes between 12-14 hours for Google to index a URL submitted to them in this manner. While that sounds like a long time, it&#8217;s often much faster than Google would index a page posted on a new site.</p>
<h3>Closing</h3>
<p>If you follow the above steps, it becomes just about impossible for anyone else to consume and publish your content before Google is able to discover and index your version.</p>
<p>If you have any alternate methods of protecting your content, please leave a note in the comments and I&#8217;ll be sure to add it to the post.</p>
]]></content:encoded>
			<wfw:commentRss>http://makeitrank.com/keep-content-safe/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best WordPress Themes for Business Sites</title>
		<link>http://makeitrank.com/wordpress-business-themes</link>
		<comments>http://makeitrank.com/wordpress-business-themes#comments</comments>
		<pubDate>Wed, 01 Aug 2012 13:28:52 +0000</pubDate>
		<dc:creator>kevinmspence</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://makeitrank.com/?p=1574</guid>
		<description><![CDATA[Best WordPress Themes for Business Sites If you have a business, you know how important it is to have a professional image online. The good news is that you don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<div style="width:600px; margin:0 auto;">
<h1>Best WordPress Themes for Business Sites</h1>
<div class="productDivider">
<p>If you have a business, you know how important it is to have a professional image online. The good news is that you don&#8217;t need to spend a lot of money to have a professionally designed website. Below, we&#8217;ve put together a list of more than 50 WordPress themes that are great for business sites. No matter your business, you should be able to find a great theme that meets your needs.</p>
<p>Or if you&#8217;re like me and you like to change the appearance of your website regularly, I recommend the <a href="http://makeitrank.com/theme/studiopress-all" target="_blank">StudioPress theme package</a>, as it gives you access to every theme they build (giving you plenty of chances you change your mind).</p>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/elegantica" title="elegantica theme" target="_blank"></p>
<h3>Elegantica</h3>
<p><img src="http://makeitrank.com/components/themes/elegantica.png" alt="elegantica theme" /><br />
</a></p>
<p>Eleganta is a minimal WordPress theme that&#8217;s perfect for any business who wants to present their products or services with a bit of creativity. This theme includes a ton of customization options including three different blog pages, four different homepage options, and an admin panel that allows you to change virtually every element of the site to match your brand.</p>
<p><a href="http://makeitrank.com/theme/elegantica" title="elegantica theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/feature-pitch" title="feature pitch theme" target="_blank"></p>
<h3>Feature Pitch</h3>
<p><img src="http://makeitrank.com/components/themes/feature-pitch.png" alt="feature pitch theme" /><br />
</a></p>
<p>Feature Pitch has one purpose and one purpose only: to sell your products online and make you money. The homepage gives you a ton of space to highlight all of the great things about your products, and the flexibility to decide what should go where. This theme also comes with 9 preset color schemes, making it absolutely simple to get a branded store up and running in no time flat.</p>
<p><a href="http://makeitrank.com/theme/feature-pitch" title="feature pitch theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/associate" title="associate theme" target="_blank"></p>
<h3>Associate</h3>
<p><img src="http://makeitrank.com/components/themes/associate.png" alt="associate theme" /><br />
</a></p>
<p>From StudioPress, Associate is a great WordPress theme for any business. The clean and professional layout gets right to the point, and the customization options make it simple to put your branding and messaging into the site without touching a line of code. This theme comes with three color styles and three layout options.</p>
<p><a href="http://makeitrank.com/theme/associate" title="associate theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/the-corporation" title="the corporation theme" target="_blank"></p>
<h3>The Corporation</h3>
<p><img src="http://makeitrank.com/components/themes/the-corporation.png" alt="the corporation theme" /><br />
</a></p>
<p>The Corporation is a sleek, sophisticated, and professional WordPress theme designed specifically for business websites. The homepage tells visitors exactly who you are and what you do, without sacrificing the user experience. This theme comes with six color schemes, so you can easily customize the appearance to fit the branding of your business.</p>
<p><a href="http://makeitrank.com/theme/the-corporation" title="the corporation theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/powered" title="powered theme" target="_blank"></p>
<h3>Powered</h3>
<p><img src="http://makeitrank.com/components/themes/powered.png" alt="powered theme" /><br />
</a></p>
<p>If you want to fully customize your site&#8217;s homepage without having to touch a single line of code, then the Powered theme might be just what the doctor ordered. The drag and drop interface makes it simple to a create a unique site that truly represents your business, and the built-in color picker makes it easier than ever to customize the design of your site.</p>
<p><a href="http://makeitrank.com/theme/powered" title="powered theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/company" title="company theme" target="_blank"></p>
<h3>Company</h3>
<p><img src="http://makeitrank.com/components/themes/company.png" alt="company theme" /><br />
</a></p>
<p>The Company theme is one of the most flexible and powerful WordPress themes out there. Designed to showcase products, services, and portfolios, this theme comes with eight preset color pallets, tons of customization options, and the widgets you need to turn your site into a true representation of your business. This theme is also responsive, meaning that it&#8217;s just as easy to use your site on a phone or tablet as it is on your desktop.</p>
<p><a href="http://makeitrank.com/theme/company" title="company theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/optimize" title="optimize theme" target="_blank"></p>
<h3>Optimize</h3>
<p><img src="http://makeitrank.com/components/themes/optimize.png" alt="optimize theme" /><br />
</a></p>
<p>The Optimize WordPress theme is designed to put your most important information directly in front of your visitors. The homepage is completely customizable, and the theme comes with a whopping 22 alternate color schemes that you can choose from. A simple color picker makes it possible to change your background color and link color without touching a single line of code.</p>
<p><a href="http://makeitrank.com/theme/optimize" title="optimize theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/office" title="office theme" target="_blank"></p>
<h3>Office</h3>
<p><img src="http://makeitrank.com/components/themes/office.png" alt="office theme" /><br />
</a></p>
<p>Office is an elegant theme designed specifically for businesses who need to maintain a clean and professional image online. This theme features a ton of customization options including 4 header options, unlimited color choices, and the ability to create staff, services, FAQ, and portfolio pages.</p>
<p><a href="http://makeitrank.com/theme/office" title="office theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/extensio" title="extensio theme" target="_blank"></p>
<h3>Extensio</h3>
<p><img src="http://makeitrank.com/components/themes/extensio.png" alt="extensio theme" /><br />
</a></p>
<p>Extensio was designed to provide businesses of all types with the ability to create a clean, powerful, and modern site. This theme comes with 18 page layout options, five color schemes, and the ability to customize fonts, colors, and backgrounds without touching the CSS file.</p>
<p><a href="http://makeitrank.com/theme/extensio" title="extensio theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/webly" title="webly theme" target="_blank"></p>
<h3>Webly</h3>
<p><img src="http://makeitrank.com/components/themes/webly.png" alt="webly theme" /><br />
</a></p>
<p>If your business has a fun and quirky edge to it, then Webly just might be the right WordPress theme for you. With four unique color schemes and a control panel that makes customization a breeze, there are few themes out there that are easier to make your own.</p>
<p><a href="http://makeitrank.com/theme/webly" title="webly theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/metric" title="metric theme" target="_blank"></p>
<h3>Metric</h3>
<p><img src="http://makeitrank.com/components/themes/metric.png" alt="metric theme" /><br />
</a></p>
<p>If you&#8217;re looking for a business theme that has a little more personality and flavor than your typical buttoned-down theme has to offer, then the Metric theme from StudioPress might be a good fit for your business. This theme comes with six layout options, so you can make sure that each page sends just the right signal to your customers.</p>
<p><a href="http://makeitrank.com/theme/metric" title="metric theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/whitelight" title="whitelight theme" target="_blank"></p>
<h3>Whitelight</h3>
<p><img src="http://makeitrank.com/components/themes/whitelight.png" alt="whitelight theme" /><br />
</a></p>
<p>Whitelight is a clean and beautiful business theme. Stuffed full with customization options, this WordPress theme makes it as easy as it&#8217;s ever been to create the website that you&#8217;ve always wanted for your business. This theme is fully responsive, so it looks great on all devices.</p>
<p><a href="http://makeitrank.com/theme/whitelight" title="whitelight theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/biznizz" title="biznizz theme" target="_blank"></p>
<h3>Biznizz</h3>
<p><img src="http://makeitrank.com/components/themes/biznizz.png" alt="biznizz theme" /><br />
</a></p>
<p>This WordPress theme means Biznizz (rimshot). The homepage is easily customizable, and the integrated slider gives a slick and professional feel that&#8217;s designed to drive new conversions. This theme comes with an impressive TEN color themes, and also features a customization panel that makes it incredibly simple to adjust the colors, fonts, and images.</p>
<p><a href="http://makeitrank.com/theme/biznizz" title="biznizz theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/unite" title="unite theme" target="_blank"></p>
<h3>Unite</h3>
<p><img src="http://makeitrank.com/components/themes/unite.png" alt="unite theme" /><br />
</a></p>
<p>The Unite theme features beautifully crisp design elements that will make your business site pop. The theme is easy to modify, and even comes with five pre-made color schemes that you can choose from. Without a doubt, this is one of the most well-designed WordPress themes out there.</p>
<p><a href="http://makeitrank.com/theme/unite" title="unite theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/media-consult" title="media consult theme" target="_blank"></p>
<h3>Media Consult</h3>
<p><img src="http://makeitrank.com/components/themes/media-consult.png" alt="media consult theme" /><br />
</a></p>
<p>Media Consult is a gorgeous WordPress theme that&#8217;s super easy to customize. The theme comes with eight different color schemes, six layout templates, and a powerful administration panel that makes it easier than ever to control the layout and design of your site without digging into the code.</p>
<p><a href="http://makeitrank.com/theme/media-consult" title="media consult theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/feather" title="feather theme" target="_blank"></p>
<h3>Feather</h3>
<p><img src="http://makeitrank.com/components/themes/feather.png" alt="feather theme" /><br />
</a></p>
<p>The Feather theme would make a great choice for any business who values a care-free, fun, and stylish vibe. This theme comes with a color control panel that makes it easier than ever to change the colors, fonts, and backgrounds on your site.</p>
<p><a href="http://makeitrank.com/theme/feather" title="feather theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/simple-press" title="simplepress theme" target="_blank"></p>
<h3>Simple Press</h3>
<p><img src="http://makeitrank.com/components/themes/simple-press.png" alt="simple press theme" /><br />
</a></p>
<p>SimplePress is a sleek theme perfect for any business who wants their website to have a professional, clean, and stylish look. This theme is responsive, which is necessary if you have customers who visit your site on mobile devices. With five color schemes and support for all major browsers, this is a good WordPress theme for any business.</p>
<p><a href="http://makeitrank.com/theme/simple-press" title="simplepress theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/inspire" title="inspire theme" target="_blank"></p>
<h3>Inspire</h3>
<p><img src="http://makeitrank.com/components/themes/inspire.png" alt="inspire theme" /><br />
</a></p>
<p>Inspire is a highly functional theme that&#8217;s designed to help businesses show off their products and services. The homepage can be completely customized with widget areas, and the theme comes with 10 preset backgrounds that allow you to easily control the look and feel of your site.</p>
<p><a href="http://makeitrank.com/theme/inspire" title="inspire theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/rebrand" title="rebrand theme" target="_blank"></p>
<h3>ReBrand</h3>
<p><img src="http://makeitrank.com/components/themes/rebrand.png" alt="rebrand theme" /><br />
</a></p>
<p>As the name suggests, ReBrand encourages you to take this theme and customize it to match the colors, messaging, and voice of your own brand. The admin panel allows you to change the layout, fonts, colors, and styles of your site without touching a single line of code.</p>
<p><a href="http://makeitrank.com/theme/rebrand" title="rebrand theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/centita" title="centita theme" target="_blank"></p>
<h3>Centita</h3>
<p><img src="http://makeitrank.com/components/themes/centita.png" alt="centita theme" /><br />
</a></p>
<p>Centita is an elegantly minimal WordPress theme that is perfect for all sorts of businesses. This theme looks great out of the box, but you&#8217;ll also be glad to know that customizing the site is a breeze (should you ever get the urge).</p>
<p><a href="http://makeitrank.com/theme/centita" title="centita theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/switch" title="switch theme" target="_blank"></p>
<h3>Switch</h3>
<p><img src="http://makeitrank.com/components/themes/switch.png" alt="switch theme" /><br />
</a></p>
<p>The Switch theme makes it possible to create a beautiful and professional looking website in just a few minutes. The layout of the homepage is entirely customizable through drag and drop widgets, and you can control many of the layout and visualization settings through the administration panel. Fully responsive.</p>
<p><a href="http://makeitrank.com/theme/switch" title="switch theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/my-cuisine" title="my cuisine theme" target="_blank"></p>
<h3>My Cuisine</h3>
<p><img src="http://makeitrank.com/components/themes/mycuisine.png" alt="my cuisine theme" /><br />
</a></p>
<p>If you&#8217;re looking for a great WordPress theme for a restaurant website, look no further. My Cuisine is a beautiful theme that features four unique color schemes, Google Maps integration, and the ability to post your menu right on your website.</p>
<p><a href="http://makeitrank.com/theme/my-cuisine" title="my cuisine theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/coffee-break" title="coffee break theme" target="_blank"></p>
<h3>Coffee Break</h3>
<p><img src="http://makeitrank.com/components/themes/coffee-break.png" alt="coffee break theme" /><br />
</a></p>
<p>Coffee Break is a great theme if you want to put your company&#8217;s services or products front and center. This theme gives you complete control over the homepage, and comes packed with custom widgets like search, Flickr, and Twitter. This theme also includes 17 different color schemes, meaning that you can change the look and feel of your site just by clicking a button.</p>
<p><a href="http://makeitrank.com/theme/coffee-break" title="coffee break theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/nova" title="nova theme" target="_blank"></p>
<h3>Nova</h3>
<p><img src="http://makeitrank.com/components/themes/nova.png" alt="nova theme" /><br />
</a></p>
<p>Nova&#8217;s simplistic design keeps your visitors focused on your products and services. The best part about this theme is the homepage, which helps keep your site focused on selling your business to potential customers. This theme comes in six unique color schemes, and you can easily switch between them with the click of a button. Nova is fully responsive, meaning that your customers can see a fully functional and beautiful site whether they&#8217;re on their phone, tablet, or desktop.</p>
<p><a href="http://makeitrank.com/theme/nova" title="nova theme" target="_blank" class="tButton">Learn More</a></p>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/sky" title="sky theme" target="_blank"></p>
<h3>Sky</h3>
<p><img src="http://makeitrank.com/components/themes/sky.png" alt="sky theme" /><br />
</a></p>
<p>In a world of serious (and sometimes sterile) business themes, Sky separates itself from the pack by packing some refreshingly fun and whimsical qualities into the theme. Sky comes with four unique color schemes, making it easy to customize it to meet the branding of your business.</p>
<p><a href="http://makeitrank.com/theme/sky" title="sky theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/leanbiz" title="leanbiz theme" target="_blank"></p>
<h3>LeanBiz</h3>
<p><img src="http://makeitrank.com/components/themes/leanbiz.png" alt="leanbiz theme" /><br />
</a></p>
<p>LeanBiz is a simple and professional business theme that cuts right to the point. The homepage is designed to provide a direct call to action, so your website can truly drive your business forward.</p>
<p><a href="http://makeitrank.com/theme/leanbiz" title="leanbiz theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/elegant-estate" title="elegant estate theme" target="_blank"></p>
<h3>Elegant Estate</h3>
<p><img src="http://makeitrank.com/components/themes/elegant-estate.png" alt="elegant estate theme" /><br />
</a></p>
<p>Elegant Estate is a professional and elegant WordPress theme that makes it easy to create a fully-functional real estate website. Property listing widgets and Google Maps make it easier than ever to add your property listings to your website. This theme comes with five unique color schemes, so you can easily change the design to fit your branding without touching a single piece of code.</p>
<p><a href="http://makeitrank.com/theme/elegant-estate" title="elegant estate theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/boutique" title="boutique theme" target="_blank"></p>
<h3>Boutique</h3>
<p><img src="http://makeitrank.com/components/themes/boutique.png" alt="boutique theme" /><br />
</a></p>
<p>Boutique makes it easy to run your own store online. It features support for all of the most popular eCommerce WordPress plugins, so you can use your favorite system without worrying about compatibility. This theme includes a color control panel, so you can unleash your inner designer and customize the fonts, backgrounds, and colors to fit your needs.</p>
<p><a href="http://makeitrank.com/theme/boutique" title="boutique theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/agent-press" title="agent press theme" target="_blank"></p>
<h3>AgentPress</h3>
<p><img src="http://makeitrank.com/components/themes/agentpress.png" alt="agent press theme" /><br />
</a></p>
<p>AgentPress was designed with realtors in mind. This theme makes it easy to add new real estate listings without ever leaving WordPress. Plus, it comes packed with five color styles, six layout options, an intuitive design, and everything else you need to drive business from your website.</p>
<p><a href="http://makeitrank.com/theme/agent-press" title="agent press theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/pixelpress" title="pixelpress theme" target="_blank"></p>
<h3>PixelPress</h3>
<p><img src="http://makeitrank.com/components/themes/pixelpress.png" alt="pixelpress theme" /><br />
</a></p>
<p>Don&#8217;t let its minimalistic appearance fool you:  PixelPress is packed to the brim with all the functionality you need to run any sort of business site. This theme is fully responsive, so it&#8217;s just as easy to use on a mobile device as it is on your desktop. Plus, the built in customization panel makes it easy for anyone to change the colors, fonts, and images.</p>
<p><a href="http://makeitrank.com/theme/pixelpress" title="pixelpress theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/empire" title="empire theme" target="_blank"></p>
<h3>Empire</h3>
<p><img src="http://makeitrank.com/components/themes/empire.png" alt="empire theme" /><br />
</a></p>
<p>The Empire theme comes with all the bells and whistles you will ever need to run a successful site for your business. With clean typography, subtle shadows, fully customizable homepage, five color schemes, and more widgets that you could shake a stick at, this WordPress theme is just as flexible as it is functional.</p>
<p><a href="http://makeitrank.com/theme/empire" title="empire theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/kaboodle" title="kaboodle theme" target="_blank"></p>
<h3>Kaboodle</h3>
<p><img src="http://makeitrank.com/components/themes/kaboodle.png" alt="kaboodle theme" /><br />
</a></p>
<p>If your business needs a website that has a super clean design and puts the focus on you and your work, then the Kaboodle theme for WordPress could be an excellent choice. The homepage is completely customizable, and the theme comes with custom post types for slides, testimonials, and portfolio items. It&#8217;s hard to find a cleaner and more customizable design than this one.</p>
<p><a href="http://makeitrank.com/theme/kaboodle" title="kaboodle theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/simplicity" title="simplicity theme" target="_blank"></p>
<h3>Simplicity</h3>
<p><img src="http://makeitrank.com/components/themes/simplicity.png" alt="simplicity theme" /><br />
</a></p>
<p>Does your business need a website that&#8217;s clean and professional but doesn&#8217;t sacrifice the personal touch? If so, the Simplicity WordPress theme could be a great choice for you. This theme comes with a massive number of customization options, including nine color schemes. Customize the entire theme without touching a single piece of code.</p>
<p><a href="http://makeitrank.com/theme/simplicity" title="simplicity theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/diner" title="diner theme" target="_blank"></p>
<h3>Diner</h3>
<p><img src="http://makeitrank.com/components/themes/diner.png" alt="diner theme" /><br />
</a></p>
<p>If you run a restaurant, you will be hard pressed to find a WordPress theme that includes more out of the box functionality than this one. It has never been simpler to showcase your menu and location, and this theme even makes it possible for customers to place orders online. Customers can also rate and sort the items on your menu.</p>
<p><a href="http://makeitrank.com/theme/diner" title="diner theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/delegate" title="delegate theme" target="_blank"></p>
<h3>Delegate</h3>
<p><img src="http://makeitrank.com/components/themes/delegate.png" alt="delegate theme" /><br />
</a></p>
<p>Delegate helps you showcase your products and services by putting them front and center. The homepage is designed to help you display your most important information first, and it&#8217;s completely customizable. This theme comes with 19 color schemes that you can choose from, and it also includes an options panel that makes changing the styles of individual elements a breeze.</p>
<p><a href="http://makeitrank.com/theme/delegate" title="delegate theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/dandelion" title="dandelion theme" target="_blank"></p>
<h3>Dandelion</h3>
<p><img src="http://makeitrank.com/components/themes/dandelion.png" alt="dandelion theme" /><br />
</a></p>
<p>The Dandelion theme gives you all of the functionality you need to present your products, services, and business in a professional light. You can easily create your own color schemes without touching a single line of code &#8212; if you know how to use Microsoft Paint, you can create your own color scheme. Just use the color picker from within the admin panel.</p>
<p><a href="http://makeitrank.com/theme/dandelion" title="dandelion theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/duotive" title="duotive theme" target="_blank"></p>
<h3>Duotive</h3>
<p><img src="http://makeitrank.com/components/themes/duotive.png" alt="duotive theme" /><br />
</a></p>
<p>In case it wasn&#8217;t immediately obvious, this WordPress theme is best suited for businesses who have a taste for the artistic. This theme comes with 17 color schemes, 274 backgrounds, and many more customization options that will allow you to make this theme your own.</p>
<p><a href="http://makeitrank.com/theme/duotive" title="duotive theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/cruz" title="cruz theme" target="_blank"></p>
<h3>Cruz</h3>
<p><img src="http://makeitrank.com/components/themes/cruz.png" alt="cruz theme" /><br />
</a></p>
<p>The Cruz theme was created specifically for modern businesses who need a website that will help them establish a professional and modern image online. A simple theme options panel helps you manage the appearance and functionality of your site, giving you the freedom to design your site without getting your hands dirty.</p>
<p><a href="http://makeitrank.com/theme/cruz" title="cruz theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/classy" title="classy theme" target="_blank"></p>
<h3>Classy</h3>
<p><img src="http://makeitrank.com/components/themes/classy.png" alt="classy theme" /><br />
</a></p>
<p>This theme is&#8230;well&#8230;classy. Super sleek, professional, and powerful, the Classy theme includes a theme settings panel which makes it really easy to customize it to your heart&#8217;s content. It also comes with 11 built-in color schemes, so you can quickly and easily make a selection that aligns with the branding of your business.</p>
<p><a href="http://makeitrank.com/theme/classy" title="classy theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/flare" title="flare theme" target="_blank"></p>
<h3>Flare</h3>
<p><img src="http://makeitrank.com/components/themes/flare.png" alt="flare theme" /><br />
</a></p>
<p>Flare is a responsive WordPress theme that looks great on any device. This theme is easily customizable, as most of the site&#8217;s elements can be controlled through an admin panel. With Unlimited Colors, you can easily customize your site to fit with the branding of your business.</p>
<p><a href="http://makeitrank.com/theme/flare" title="flare theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/nexus" title="nexus theme" target="_blank"></p>
<h3>Nexus</h3>
<p><img src="http://makeitrank.com/components/themes/nexus.png" alt="nexus theme" /><br />
</a></p>
<p>Nexus is a responsive WordPress theme that&#8217;s packaged with a ton of customization options. This theme is retina display ready, comes with 20 skins, and over 100 display options that make it easy to change the appearance of virtually any element on your site.</p>
<p><a href="http://makeitrank.com/theme/nexus" title="nexus theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/doover" title="doover theme" target="_blank"></p>
<h3>Doover</h3>
<p><img src="http://makeitrank.com/components/themes/doover.png" alt="doover theme" /><br />
</a></p>
<p>Dover is a responsive theme designed to look just as great on mobile devices as it does on your desktop. These theme has a ton of configuration options, making it simple to change anything you want to through the admin panel. No coding required.</p>
<p><a href="http://makeitrank.com/theme/doover" title="doover theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/sterling" title="sterling theme" target="_blank"></p>
<h3>Sterling</h3>
<p><img src="http://makeitrank.com/components/themes/sterling.png" alt="sterling theme" /><br />
</a></p>
<p>Sterling makes it easy to create a site that will truly show off your businesses&#8217; style and personality. With 18 predefined color schemes and a powerful administration panel that makes it easy to change many of the theme styles without touching CSS. Fully responsive.</p>
<p><a href="http://makeitrank.com/theme/sterling" title="sterling theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/trymee" title="trymee theme" target="_blank"></p>
<h3>TryMee</h3>
<p><img src="http://makeitrank.com/components/themes/trymee.png" alt="trymee theme" /><br />
</a></p>
<p>Some business themes for WordPress are bland and boring, but not this one. TryMee is packed with color and personality, and it&#8217;s a great for any business who wants to put their full array of products and services on display. This is a responsive theme, and it looks great on devices of all types.</p>
<p><a href="http://makeitrank.com/theme/trymee" title="trymee theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/flagship" title="flagship theme" target="_blank"></p>
<h3>Flagship</h3>
<p><img src="http://makeitrank.com/components/themes/flagship.png" alt="flagship theme" /><br />
</a></p>
<p>Flagship is a good theme for businesses of all types, but it&#8217;s best for those who want to showcase their portfolio of products or designs. This theme comes with 21 pre-packaged color schemes, and an admin panel that makes it simple to change fonts and colors. In short, this is one of the most easily customizable themes out there.</p>
<p><a href="http://makeitrank.com/theme/flagship" title="flagship theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/flexishop" title="flexishop theme" target="_blank"></p>
<h3>Flexishop</h3>
<p><img src="http://makeitrank.com/components/themes/flexishop.png" alt="flexishop theme" /><br />
</a></p>
<p>Flexishop is a responsive theme that is designed to make it easier than ever to customize your site to meet the branding requirements of your business. Just about every design element can be changed through the administration panel, meaning that you never have to touch a line of CSS to adjust your fonts or colors.</p>
<p><a href="http://makeitrank.com/theme/flexishop" title="flexishop theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/ecobiz" title="ecobiz theme" target="_blank"></p>
<h3>ECOBIZ</h3>
<p><img src="http://makeitrank.com/components/themes/ecobiz.png" alt="ecobiz theme" /><br />
</a></p>
<p>ECOBIZ is designed for businesses who promote positive environmental practices. This theme is easy to customize, as it comes with six predefined color schemes, 25 background patterns, and a ton of styling options that make it possible to change fonts and colors without touching a piece of code.</p>
<p><a href="http://makeitrank.com/theme/ecobiz" title="ecobiz theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/logo" title="logo theme" target="_blank"></p>
<h3>Logo</h3>
<p><img src="http://makeitrank.com/components/themes/logo.png" alt="logo theme" /><br />
</a></p>
<p>RT-Theme 11 is a premium corporate theme that will help you develop a positive and appealing online presence. The theme looks great out of the box, but it also comes with ten different color schemes that you can choose from.</p>
<p><a href="http://makeitrank.com/theme/logo" title="logo theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/vulcan" title="vulcan theme" target="_blank"></p>
<h3>Vulcan</h3>
<p><img src="http://makeitrank.com/components/themes/vulcan.png" alt="vulcan theme" /><br />
</a></p>
<p>The Vulcan theme is great for businesses of all types. It comes with five predefined color schemes (blue, green, orange, purple, and grey), and switching between them is as simple as selecting your favorite and clicking save. There are also six custom templates included, so creating your contact form, FAQ, portfolio, and services pages has never been easier.</p>
<p><a href="http://makeitrank.com/theme/vulcan" title="vulcan theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/showtime" title="showtime theme" target="_blank"></p>
<h3>Showtime</h3>
<p><img src="http://makeitrank.com/components/themes/showtime.png" alt="showtime theme" /><br />
</a></p>
<p>Showtime is a theme designed with businesses in mind. It works great as a business card site, a portfolio, or any other type of site that you need to attract new or existing customers. This theme comes with six preset color schemes, custom widgets for contact forms and social icons, and a fully customizable homepage.</p>
<p><a href="http://makeitrank.com/theme/showtime" title="showtime theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/magnificent" title="magnificent theme" target="_blank"></p>
<h3>Magnificent</h3>
<p><img src="http://makeitrank.com/components/themes/magnificent.png" alt="magnificent theme" /><br />
</a></p>
<p>The Magnificent theme is designed for businesses who have a lot of content that they need to get in front of their visitors. The homepage features a beautiful four column layout, complete with five widget areas that make it easier than ever to customize the look and feel of your WordPress site without ever having to touch a piece of code.</p>
<p><a href="http://makeitrank.com/theme/magnificent" title="magnificent theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/over-easy" title="overeasy theme" target="_blank"></p>
<h3>Overeasy</h3>
<p><img src="http://makeitrank.com/components/themes/overeasy.png" alt="overeasy theme" /><br />
</a></p>
<p>Overeasy is an elegant and minimal WordPress theme designed to help companies achieve a serious (but not too serious) presence online. The homepage is intended to drive sales and conversions, while the interior pages are designed to help you promote your products and services. This theme comes bundled with 10 color schemes that you can change with the click of a button.</p>
<p><a href="http://makeitrank.com/theme/over-easy" title="overeasy theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/deluxe" title="deluxe theme" target="_blank"></p>
<h3>Deluxe</h3>
<p><img src="http://makeitrank.com/components/themes/deluxe.png" alt="deluxe theme" /><br />
</a></p>
<p>Deluxe is a powerful WordPress theme built specifically for businesses. This theme is highly customizable. Most layout and design options can be controlled directly through the admin panel, meaning that you can customize your site without getting your hands dirty.</p>
<p><a href="http://makeitrank.com/theme/deluxe" title="deluxe theme" target="_blank" class="tButton">Learn More</a>
</div>
<div class="productDivider">
<a href="http://makeitrank.com/theme/display" title="display theme" target="_blank"></p>
<h3>Display</h3>
<p><img src="http://makeitrank.com/components/themes/display.png" alt="display theme" /><br />
</a></p>
<p>Display is a business WordPress theme packed with character. It features a 3D image slideshow (you have to <a href="http://makeitrank.com/theme/display" title="display theme" target="_blank">see it</a> to believe it) that you can easily control through controls in the administration area of the site. It also comes with three preset color schemes, and eight admin pages that allow you to control the look and feel of your site without knowing how to code.</p>
<p><a href="http://makeitrank.com/theme/display" title="display theme" target="_blank" class="tButton">Learn More</a>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://makeitrank.com/wordpress-business-themes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your masked affiliate links aren&#8217;t fooling Google</title>
		<link>http://makeitrank.com/affiliate-links-seo</link>
		<comments>http://makeitrank.com/affiliate-links-seo#comments</comments>
		<pubDate>Mon, 30 Jul 2012 17:15:39 +0000</pubDate>
		<dc:creator>kevinmspence</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://makeitrank.com/?p=1523</guid>
		<description><![CDATA[One common piece of advice that SEOs give to affiliate marketers (see here and here) is to mask their affiliate links by following these steps: Setup a 301 redirect (ie: [...]]]></description>
			<content:encoded><![CDATA[<p>One common piece of advice that SEOs give to affiliate marketers (see <a href="http://yoast.com/affiliate-links-and-seo/" title="affiliate links and SEO">here</a> and <a href="http://www.wolf-howl.com/affiliate-marketing/cloaking-affiliate-links/" title="cloaking affiliate links">here</a>) is to mask their affiliate links by following these steps:</p>
<ol>
<li>Setup a 301 redirect (ie: redirect yoursite.com/affiliate to affiliatesite.com)</li>
<li>Block the redirected page through robots.txt</li>
<li>Add the nofollow attribute to all affiliate links</li>
</ol>
<p>The idea is to make it look like you&#8217;re linking to internal product pages, when you&#8217;re really linking to an external site. Then you&#8217;re adding nofollow and /disallow directives to keep Google from discovering that you&#8217;re linking offsite.</p>
<p>It sounds like a good idea in theory, right? I mean, how could Google know that a link redirects if they can&#8217;t follow it or crawl it?</p>
<p>The truth is, there <i>are</i> some advantages to running your affiliate links through redirects (more on that later). But if you&#8217;re trying to fool Google by masking your affiliate links in this way, the fact of the matter is that you&#8217;re wasting your time.</p>
<h3>Google can see right through you</h3>
<p>Before we dive in here, I need to clear up some common misconceptions about how Google works.</p>
<p><b>Nofollow</b> attributes on links tell search engines not to give editorial credit to the links. But the spiders will still follow the link and discover the page on the other side. So you&#8217;re not stopping the crawl by adding a nofollow attribute to your affiliate link.</p>
<p><b>Robots.txt</b> disallow commands tell Google not to <i><b>crawl</b></i> a page. That&#8217;s it. They will still index the page, and they can still tell if the page is redirected without crawling it. This is how:</p>
<p><b>HTTP headers</b> are sent from your server each time a file is requested. These headers return status codes that communicate whether or not the document exists, or if it has been moved (redirected).</p>
<p>Now, Google can check HTTP headers without crawling a page. In fact, you can do the same thing yourself with just two lines of PHP (try it out for yourself if you&#8217;re curious &#8212; just replace the value of the $url variable with your own affiliate url):</p>
<pre class="wp-code-highlight prettyprint">
$url = 'http://google.com'; 
var_dump(get_headers($url,0)); 
</pre>
<p>When executed, the above code will return a response that looks something like this:</p>
<pre class="wp-code-highlight prettyprint">
/*array(18) { 
  [0]=&gt;  string(30) &quot;HTTP/1.0 301 Moved Permanently&quot; 
  [1]=&gt;  string(32) &quot;Location: http://www.google.com/&quot; 
  [2]=&gt;  string(38) &quot;Content-Type: text/html; charset=UTF-8&quot; 
  [3]=&gt;  string(35) &quot;Date: Mon, 30 Jul 2012 00:59:50 GMT&quot; 
  [4]=&gt;  string(38) &quot;Expires: Wed, 29 Aug 2012 00:59:50 GMT&quot; 
  [5]=&gt;  string(38) &quot;Cache-Control: public, max-age=2592000&quot; 
.... 
  string(15) &quot;HTTP/1.0 200 OK&quot; 
  [10]=&gt;  string(35) &quot;Date: Mon, 30 Jul 2012 00:59:51 GMT&quot; 
  [11]=&gt;  string(11) &quot;Expires: -1&quot; 
  [12]=&gt;  string(33) &quot;Cache-Control: private, max-age=0&quot; 
..... 
}*/ 
</pre>
<p>See how the header communicates that google.com 301 redirects to www.google.com? With two lines of code, even a well-behaved bot that honors robots.txt could discover that your &#8216;sneaky&#8217; redirect is a 301 affiliate link.</p>
<p>In short, your masked links aren&#8217;t fooling anyone. But they can still be worthwhile to implement.</p>
<h3>Good reasons to redirect affiliate links</h3>
<p>Even though your redirects aren&#8217;t fooling Google, there are still a few good reasons why you might want to implement them:</p>
<p><b>1. Click tracking</b>. By running your affiliate links through an internal redirect, you can track the number of times that visitors click on your links. This is necessary information if you want to calculate your own conversion rates (<a href="http://wordpress.org/extend/plugins/gocodes/" title="gocodes plugin">GoCodes</a> is a popular WordPress plugin that will do this for you).</p>
<p><b>2. Pretty URLs</b>. Some affiliate programs (I&#8217;m looking you, CJ), provide incredibly ugly URLs like fewrxrk.com/32535346342. Your users don&#8217;t want to click on that link, because they have no idea what&#8217;s going to be on the other side. An internal redirect can help entice clicks.</p>
<p><b>3. Privacy</b>. Many affiliate programs include your affiliate ID in the links that they give you. If you use the same ID on multiple sites, it can make it very easy for people to discover all of the affiliate sites that you&#8217;re running through a simple Google search. By not including the ID on your page, you can make it a little bit harder for them.</p>
]]></content:encoded>
			<wfw:commentRss>http://makeitrank.com/affiliate-links-seo/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to disable the RSS feed on a WordPress site</title>
		<link>http://makeitrank.com/disable-rss-wordpress</link>
		<comments>http://makeitrank.com/disable-rss-wordpress#comments</comments>
		<pubDate>Mon, 23 Jul 2012 20:59:42 +0000</pubDate>
		<dc:creator>kspence</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://makeitrank.com/?p=1462</guid>
		<description><![CDATA[WordPress was originally built to be a blogging platform, but in recent years, it has evolved far beyond that.  Today, WordPress is used for all sorts of websites, from traditional [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress was originally built to be a blogging platform, but in recent years, it has evolved far beyond that.  Today, WordPress is used for all sorts of websites, from traditional blogs, to enterprise websites, to business card websites for mom and pop shops.</p>
<p>While bloggers like myself appreciate all that WordPress can do, the truth is, most websites don&#8217;t need a lot of  the out of the box functionality to be enabled. For example, when I build a business card website for a small business, one of the first things I do is disable the RSS feed. They just won&#8217;t get any benefit out of it on their site.</p>
<h3>Why get rid of the feed?</h3>
<p>RSS is great for syndicating content, but if you have a business card website or don&#8217;t regularly publish content that people would want to subscribe to, all it&#8217;s really doing for you is making your content easier for other people to take and re-purpose on their own sites (there are even WordPress plugins that make it crazy easy for people to do this). This can result in a lot of crappy links, and even some duplicate content issues in some cases.</p>
<p>When you have a blog, it&#8217;s well worth the risk to keep the RSS feed running. But in some cases, there&#8217;s just no benefit.</p>
<h3>How to get rid of the feed</h3>
<p>Disabling the RSS feed is simple, though you will need to be comfortable editing functions.php (remember to make a backup before you start).</p>
<p><strong>Step 1:</strong> Open your functions.php file in your favorite text editor. Make a backup, and then scroll to the bottom of the file. Copy and paste this code into functions.php. This code will replace the contents of your RSS feed with a simple message that directs visitors to your homepage:</p>
<pre class="wp-code-highlight prettyprint">
function disable_feed() {
wp_die( __('Our RSS feed is disabled. Please &lt;a href=&quot;/&quot;&gt;visit our homepage&lt;/a&gt;.') );
}

add_action('do_feed', 'disable_feed', 1);
add_action('do_feed_rdf', 'disable_feed', 1);
add_action('do_feed_rss', 'disable_feed', 1);
add_action('do_feed_rss2', 'disable_feed', 1);
add_action('do_feed_atom', 'disable_feed', 1);
</pre>
<p><strong>Step 2:</strong> Save functions.php. Load yoursite.com/feed in your browser, and you should see the new error message.</p>
<p><strong>Step 3:</strong> Your feed is now disabled, which is a good first step. But there is one more thing that we still need to do. If you view the source of your website, you will see two references to yoursite.com/feed in the head section of your site. Since your feed isn&#8217;t functional anymore, let&#8217;s go ahead and remove those references.</p>
<p>With functions.php still open, copy and paste the following code:</p>
<pre class="wp-code-highlight prettyprint">
function removeHeadLinks() {
      remove_action( ‘wp_head’, ‘feed_links_extra’, 3 );
      remove_action( ‘wp_head’, ‘feed_links’, 2 );
      remove_action( ‘wp_head’, ‘rsd_link’ );
}
add_action('init', 'removeHeadLinks');
</pre>
<p>Now view your page source again, and the references to your RSS feed should be gone.</p>
<p>Congratulations! You&#8217;ve successfully disabled your site&#8217;s RSS feed.</p>
]]></content:encoded>
			<wfw:commentRss>http://makeitrank.com/disable-rss-wordpress/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The search results page of the future?</title>
		<link>http://makeitrank.com/the-search-results-page-of-the-future</link>
		<comments>http://makeitrank.com/the-search-results-page-of-the-future#comments</comments>
		<pubDate>Fri, 08 Jun 2012 14:20:57 +0000</pubDate>
		<dc:creator>kspence</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://makeitrank.com/?p=1433</guid>
		<description><![CDATA[At the beginning of my work day, I normally do some random searching to get my brain moving while I drink my coffee. Today, I came across something pretty interesting. [...]]]></description>
			<content:encoded><![CDATA[<p>At the beginning of my work day, I normally do some random searching to get my brain moving while I drink my coffee. Today, I came across something pretty interesting.</p>
<p>In cases where Google feels extremely confident that you are looking for one particular item, they will show it to you &#8212; and nothing else. This is pretty revolutionary for a search engine that&#8217;s been pretty consistent with its 10 result set.</p>
<p>This morning I searched &#8216;occupational outlook handbook&#8217; and got the following results page (try it out for yourself and see if you get it too). As you can see in the screenshot below, my results consisted only of a knowledge graph entry and links to the handbook itself. That&#8217;s it. There are no other domains in the results.</p>
<p>I&#8217;ve never seen this happen before, but I have a feeling that we will be seeing more and more of this before too long (article continues after the screenshot).</p>
<p><img class="alignright size-large wp-image-1434" title="" src="http://makeitrank.com/wp-content/uploads/2012/06/oco-screen-1024x673.png" alt="this is a screenshot of the first page of Google's search results for 'occupational outlook handbook.' It only includes one listing (instead of the usual 10) and a knowledge graph entry." width="1024" height="673" /></p>
<p>&#8216;What happens when I click to page 2,&#8217; I thought. Well, that&#8217;s just as interesting. Page 2 is essentially just a site:bls.gov command. Here&#8217;s a screenshot:</p>
<p><img class="size-full wp-image-1437 alignnone" src="http://localhost/rank/wp-content/uploads/2012/06/oco-screen-2.png" alt="this is a screenshot of a Google search results page. It's page 2 for 'occupational outlook handbook,' but only shows listings from bls.gov" width="561" height="915" /></p>
<p>It wasn&#8217;t until the bottom of page 3 that I came across listings for any other domains.</p>
<p>I don&#8217;t mean to imply that this is a bad thing. In this particular case, it&#8217;s perfect &#8212; Google knew exactly what I was looking for and gave it to me.</p>
<p>For those affiliates out there who are piggybacking off of brand names, it might be time to reassess your business model. How long until brands and products get a similar treatment?</p>
<p>If you&#8217;ve seen similar results, please leave a note in the comments. I&#8217;d like to see some other examples of queries that trigger this behavior.</p>
]]></content:encoded>
			<wfw:commentRss>http://makeitrank.com/the-search-results-page-of-the-future/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dear Google: It&#8217;s not all about you</title>
		<link>http://makeitrank.com/dear-google-its-not-all-about-you</link>
		<comments>http://makeitrank.com/dear-google-its-not-all-about-you#comments</comments>
		<pubDate>Thu, 31 May 2012 15:39:24 +0000</pubDate>
		<dc:creator>kspence</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://makeitrank.com/?p=1376</guid>
		<description><![CDATA[Dear Google, Something has happened to you. Since you released Panda into the wild, you have become a clingy high school girlfriend. You know, the one whose world view has [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-1387" title="This is a DMCA request waiting to happen. It's also a picture of Alicia Silverstone from the movie 'Clueless'" src="http://makeitrank.com/wp-content/uploads/2012/05/clueless.jpg" alt="This is a DMCA request waiting to happen. It's also a picture of Alicia Silverstone from the movie 'Clueless'" width="900" height="506" /></p>
<p>Dear Google,</p>
<p>Something has happened to you.</p>
<p>Since you released Panda into the wild, you have become a clingy high school girlfriend. You know, the one whose world view has yet to develop to the point where they understand that most of the things you do and say have nothing at all to do with them.</p>
<p>With recent updates, you have demonstrated a belief that everything we do is an attempt to manipulate you. At worst, this is the type of deep-seated paranoia that usually precedes imminent self destruction (see Nixon, Richard and Stalin, Joseph). At best, it&#8217;s childish, manipulative, and egomaniacal.</p>
<p>See, somewhere along the line, you forgot something really important:</p>
<p><em><strong>We can add value to our sites without adding value to the internet.</strong></em></p>
<p>I&#8217;m going to say that one more time:</p>
<p><em><strong>We can add value to our sites without adding value to the internet.</strong></em></p>
<p>Sometimes, when we&#8217;re trying to make our sites better for our users, we add value to our sites without adding value to the internet. There *should* be nothing wrong with that.</p>
<p>As an example, let&#8217;s say I&#8217;m a cat expert and I have an informational site about breeds and cat care. In addition to my regular expert content, maybe I like to post a funny cat picture each day, and each picture is a new post. My users love the cat pictures, and they keep coming back each day to see them. I&#8217;m happy, because the pictures increase my site&#8217;s engagement. My users are happy because the pictures are hilarious. Everyone is happy.</p>
<p>Except you.</p>
<p>You&#8217;re not happy, because a year from now, half of the pages on my site have nothing on them except a photograph. You interpret this to mean that my content is not adding value to the internet.</p>
<p><strong>From your newfound perspective, if content doesn&#8217;t add value to the internet,  it&#8217;s thin. And if it&#8217;s thin, it&#8217;s spam. And if it&#8217;s spam, the entire site must burn.</strong></p>
<p>Here&#8217;s the thing, Google. And you have to understand this: As site owners,  <em>just because we create a piece of content doesn&#8217;t mean we&#8217;re expecting you to send us traffic for it. </em></p>
<p>Some things, we do just for us. Some things, we do just for our users. Not everything is about you. In fact, most things aren&#8217;t.</p>
<p>You used to know this.</p>
<p>You used to be good at identifying sections of a site that aren&#8217;t adding value to the internet, while highlighting the sections that are.</p>
<p>You used realize that everything we do isn&#8217;t an attempt to get traffic from you.</p>
<p>But not now.</p>
<p>Now, you assume that every page that we create is an attempt to squeeze out one extra visit from the Google machine.</p>
<p>Now, you see every word, every photo, every comment as yet another attempt to manipulate your results.</p>
<p>This paranoia has got to stop.</p>
<p>It isn&#8217;t all about you, Google. And it never was.</p>
]]></content:encoded>
			<wfw:commentRss>http://makeitrank.com/dear-google-its-not-all-about-you/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your high bounce rate is killing your analytics</title>
		<link>http://makeitrank.com/bounce-rate</link>
		<comments>http://makeitrank.com/bounce-rate#comments</comments>
		<pubDate>Wed, 16 May 2012 13:31:22 +0000</pubDate>
		<dc:creator>kspence</dc:creator>
				<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://makeitrank.com/?p=1349</guid>
		<description><![CDATA[This site has a very high bounce rate (90%+). And when visits come from search, the bounce rate is even higher. For a site like mine, a high bounce rate [...]]]></description>
			<content:encoded><![CDATA[<p>This site has a very high bounce rate (90%+). And when visits come from search, the bounce rate is even higher.</p>
<p>For a site like mine, a high bounce rate from search isn&#8217;t necessarily a bad thing. My content is geared towards helping people solve one specific problem. They read one page to help them solve it, and then they bounce. So long as they find what they&#8217;re looking for, I&#8217;m a happy camper.</p>
<p>But I&#8217;m not happy about my analytics reports. Each time I log in, I&#8217;m presented with pages that look something like this:</p>
<p><img class="alignnone size-full wp-image-1350" title="bounce-rate" src="http://makeitrank.com/wp-content/uploads/2012/05/bounce-rate.png" alt="" width="700" height="282" /></p>
<p>These numbers are so bad that it makes me want to hole myself up in my bedroom and spend entire days staring at the ceiling fan like Martin Sheen at the beginning Apocalypse Now.</p>
<p>You can see that the bounce rate is 100% for all keywords, and the average visit duration is zero seconds.</p>
<p>Zero seconds on site. So not only is my design repulsive, but my readers are equipped with cheetah-like reflexes. How can that be?!</p>
<p>Thankfully, there&#8217;s a simple explanation &#8212; and my bounce rate is to blame.</p>
<h3>How Google Analytics measures time on site</h3>
<p>When you install Google Analytics (or any other analytics software) on your site, it&#8217;s as simple as copying a neat little JavaScript function they provide you and pasting it onto the pages of your site. This script is then executed each time one of your pages loads.</p>
<p>This is how time on site measurements work:</p>
<ol>
<li>When a visitor enters your site, the time of the initial pageview is logged.</li>
<li>As a visitor navigates through your site, the time of each subsequent pageview is logged.</li>
<li>Time on site is calculated by subtracting the time of the initial pageview from the time of the last pageview.</li>
</ol>
<p>See the problem?</p>
<p>When a visitor views only one page, there&#8217;s nothing to subtract the timestamp from. Your analytics software has no way to calculate time on site, so they give you a big fat zero.</p>
<p>Your bounce rate is absolutely killing your analytics.</p>
<h3>What to do about it</h3>
<p>This is a frustrating problem. My bounce rate is making my analytics next to worthless when it comes to measuring engagement.</p>
<p>I have accepted that the high bounce rate is just a fact of life (until I do something to try and reduce it), but it sure would be nice to know how users are interacting with my pages. Are they reading the entire articles? Are they just reading a sentence and then bouncing?</p>
<p>With a little bit of creativity, you can setup Google Analytics to measure scroll depth. This allows you to see how far people scroll down on your content pages (in terms of percentages).</p>
<p>Scroll depth is not a perfect metric by any means, but it at least gives you an idea of how people are interacting with your site (some information is always better than no information).</p>
<p>With scroll depth events enabled, I can see reports that look something like this:</p>
<p><img class="alignnone size-full wp-image-1354" title="scroll-events" src="http://makeitrank.com/wp-content/uploads/2012/05/scroll-events.png" alt="" width="600" height="236" /></p>
<p>If you&#8217;d like to implement scroll depth events within Analytics, <a title="scroll depth analytics jquery" href="http://www.ravelrumba.com/blog/tracking-scroll-depth-jquery-google-analytics/">check out this jQuery plugin by Rob Flaherty</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://makeitrank.com/bounce-rate/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How soft 404s can signify a hacked website</title>
		<link>http://makeitrank.com/soft-404-errors</link>
		<comments>http://makeitrank.com/soft-404-errors#comments</comments>
		<pubDate>Wed, 02 May 2012 12:07:42 +0000</pubDate>
		<dc:creator>kspence</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://makeitrank.com/?p=1269</guid>
		<description><![CDATA[Note: This post is a case study. I haven&#8217;t posted a case study on the site before, so let me know if you feel it&#8217;s valuable. If you do, I [...]]]></description>
			<content:encoded><![CDATA[<p><em>Note: This post is a case study. I haven&#8217;t posted a case study on the site before, so let me know if you feel it&#8217;s valuable. If you do, I will try to post this sort of content regularly.</em></p>
<p>A few weeks ago, I was contacted by a site owner who had a very serious problem: He was noticing what he believed to be a lot of false positive soft 404 errors in his Google Webmaster Tools account. Alarmed, he started checking his pages in Google, and noticed that a lot of his content had been completely de-indexed.</p>
<p>Curious, I took a look at his site, and my initial impression was positive. It was well architected, and home to a lot of original and high quality content that demonstrated a solid understanding of its audience. A quick check of his backlinks removed any suspicion that he was engaged in anything he shouldn&#8217;t have been. Everything appeared to be in top shape.</p>
<p>Stranger still, the pages that Google was reporting as soft 404s appeared to be unique and valuable. Aside from the header and footer, they had nothing at all in common with his real 404 pages (which sent the proper response code).</p>
<p>Why was Google throwing the soft 404 flag and removing his content from their index?</p>
<p>I was interested in helping him solve this problem and agreed to help.</p>
<h3>Where things got nasty</h3>
<p>With the initial research out of the way, I fired up Firefox and used <a title="user agent switcher firefox" href="https://addons.mozilla.org/en-US/firefox/addon/user-agent-switcher/">this user agent switcher plugin</a> to see the site as Google sees it.</p>
<p>The news wasn&#8217;t good. I&#8217;m pretty sure I reacted the same way Samuel L Jackson reacted in Jurassic Park when the electricity in the raptor fences went down. That is, mumbling obscenities to myself and warning everyone to hold onto their butts.</p>
<p>In short, I saw that<strong> the site had been hacked</strong> to show pharmacy spam links to Google, and the regular site to everyone else. With the Googlebot user agent activated, every page on the site looked like this:</p>
<p><img class="alignnone size-full wp-image-1311" title="hacked-site" src="http://makeitrank.com/wp-content/uploads/2012/05/hacked-site.png" alt="" width="231" height="76" /></p>
<p>Suddenly, the problem made sense. In Google&#8217;s eyes, the content of every page on his site was identical to his 404 pages (which were also hacked). Hence the soft 404 errors.</p>
<p>And they were de-indexing the site because every page was a duplicate of every other page on the site (not to mention the content was nothing but spam links).</p>
<h3>Can we fix it? Yes we can!</h3>
<p>I requested the login credentials for his site and cpanel admins.</p>
<p>The site used Joomla as its CMS, which I&#8217;m not terribly familiar with, and it took some time to get acquainted. As I was starting to get a handle on how all the pieces worked together, I stumbled across a php file that was buried in a very deep folder.</p>
<p>In it, I found what must be the simplest malicious code in the history of malicious code. It was a just a couple lines of php  that looked like this:</p>
<p><img class="alignnone size-full wp-image-1307" title="hacked-code" src="http://makeitrank.com/wp-content/uploads/2012/05/hacked-code1.png" alt="" width="462" height="94" /></p>
<p><em>*note* I&#8217;ve removed the actual URLs from the screenshot because I promised anonymity &#8212; I don&#8217;t want you super sleuths digging through backlinks and identifying the hacked site. </em></p>
<p>In case you can&#8217;t read the code, basically what it&#8217;s doing is checking to see if the user agent of the visitor is Googlebot. If it is, then it shows the pharmacy spam links. If it isn&#8217;t, then it shows the site as normal.</p>
<p>Fixing the site was as simple as removing that conditional statement.</p>
<h3>The recovery</h3>
<p>Within one week, many of the de-indexed pages started making their way back into the index.</p>
<p>Within two and a half weeks, the site made a full recovery. All of its pages were back in the index, and traffic had returned to normal.</p>
<p>In this case, the site benefited greatly by having someone in charge who was monitoring Google Webmaster Tools, saw the soft 404 errors, and noticed that pages were dropping from the index. I suspect that if the site had continued to show those spam links for an extended period of time, recovery could have been much slower.</p>
<p>In the end, the relatively quick recovery was great news for them. Unfortunately, not everyone is so lucky.</p>
<p>Check your Webmaster Tools each day, ladies and gentlemen.</p>
]]></content:encoded>
			<wfw:commentRss>http://makeitrank.com/soft-404-errors/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How my music addiction led to a career in affiliate marketing</title>
		<link>http://makeitrank.com/how-i-became-an-affiliate-marketer</link>
		<comments>http://makeitrank.com/how-i-became-an-affiliate-marketer#comments</comments>
		<pubDate>Tue, 13 Mar 2012 19:50:44 +0000</pubDate>
		<dc:creator>kspence</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://makeitrank.com/?p=1072</guid>
		<description><![CDATA[The first time I heard Smells Like Teen Spirit, it was like a freight train sucker punched me in the chest.  I was a teenager at the time and I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>The first time I heard Smells Like Teen Spirit, it was like a freight train sucker punched me in the chest.  I was a teenager at the time and I&#8217;d listened to a lot of music before, but I&#8217;d never felt *it* until I heard that song come over the radio for the first time. It was the beginning of something.</p>
<p>I immediately went on a record store rampage, spending all the money I could earn on CDs by bands I&#8217;d never heard of, trying to rediscover that feeling of *it* I experienced when I heard that song for the first time.</p>
<p>I remember starting with the Pixies (the guy at the record store told me they were a big influence on Kurt Cobain. He was right). Then I started moving backwards through time to Talking Heads, David Bowie, The Beatles, and on and on until I finally made it all the way back to Bo Diddley and his little square guitar.</p>
<p>I ended up falling in love with the psychedelic music of the 60s and 70s, because to me it felt less like a product and more like an adventure. And after my first viewing of The Wall, I promised myself that no matter how old I got, <strong>I would never become a cog in the machine</strong>.</p>
<p>My definition of a cog: when you sacrifice your freedom or individuality for the good of someone else.</p>
<p>Our lives take strange paths sometimes. Though I never would have guessed it (nor would it have even been possible to at the time), my love of music directly led to my career in affiliate marketing.</p>
<p>This is how.</p>
<h3>I don&#8217;t need no stinking diploma</h3>
<p>I had no interest in going to college when I graduated high school. Not because I didn&#8217;t like to learn (I loved it and still do), but because I recognized that I had no idea what I wanted to do with myself. At that point, I only knew what I <em>didn&#8217;t</em> want to be:  a <strong>cog in the machine</strong>.</p>
<p>I was certain that going to college without a clear direction would just accelerate my transition into being a <strong>cog</strong>. Within 10 years <strong>I&#8217;d wind up like Patrick Bateman</strong>, applying a wax face each morning and debating the artistic merits of business cards.</p>
<p>Meanwhile, I&#8217;d run into a musical rut. I wasn&#8217;t feeling *it* anymore. All the music I could find in the record store was feeling old and tired. It was around this point that a guy I worked with gave me an audience recording of a Phish show (<a title="phish 3/12/93" href="http://mail.etree.org/pipermail/bittorrent/2006-November/014184.html">3/12/93</a>, for those of you who you care), and turned me on to live music.</p>
<p>So while my friends were all packing up their stuff for college, I took the money I&#8217;d saved from working after school as a steakhouse cook and hit the road in search of *it*.</p>
<h3>Ladies and gentlemen, the Phish from Vermont!</h3>
<p>I spent the better part of 3 years following Phish around the country, and it was one of the defining experiences of my life.</p>
<p>I got to see the country, experienced *it* on a near nightly basis, achieved a great perspective of what&#8217;s actually important in life (hint: not business cards),  met a lot of great people (including my future wife), and I learned how to make money on the road.</p>
<p>While following Phish, I learned these key lessons about life and business:</p>
<p>1. Look like you&#8217;re supposed to be there and nobody will question you. Sometimes you might have to carry around different colored wrist bands in your backpack.</p>
<p>2. Value is relative. I used to sell bottled water in the parking lots for gas and food money. I did ok. But it was much more valuable to people when I stood right by the entry gates (I sold more and for higher prices).</p>
<p>3. Provide value and people will love you &#8212; even on your off nights. I learned this from the band.</p>
<p>4. Authority is an illusion.</p>
<p>5. If you&#8217;re good to people, you will always be welcome. I quit so many jobs to go on tour, but always tried hard to leave gracefully. I was always welcomed back when I got home.</p>
<p>6. Freedom is worth a whole lot more than money. I didn&#8217;t get any value out of money beyond what I needed for food and gas. Once those basic needs were met, money wasn&#8217;t good for much.</p>
<p>It was an adventure. But it couldn&#8217;t last forever.</p>
<h3>Get a job, hippie</h3>
<p>When my daughter was about a year old, we moved to Charlottesville, VA. I needed a job, but I wasn&#8217;t willing to sell my happiness for money. As luck would have it, I managed to get what was a dream job for me at the time: working in merchandising for Dave Matthews Band.</p>
<p>Now, when I say that I worked in merchandising, what I really mean is this: when people ordered Dave Matthews merchandise online, I would grab the order sheet off the printer, take the merch off a shelf, put it in a mailer, and drop it in a bin that the mailman would pick up at the end of the day.</p>
<p>It was a simple job, but it was my first exposure to how online business worked. It wasn&#8217;t long before my wheels started spinning. <strong>I wanted to make money online for myself.</strong> But how?</p>
<p>I didn&#8217;t have the answer to that question right away, but I knew right then that I wanted to learn how to build websites.</p>
<p>With a clear direction in mind, it was time to go to college.</p>
<h3>On second thought, I&#8217;ll take that diploma</h3>
<p>After a long educational hiatus I applied to <a title="william and mary" href="http://www.wm.edu/">The College of William and Mary</a>, got in, and enrolled in the computer science program. It was *tough* going to school full-time with a family, but the experience taught me a strong work ethic and I tip my hat to everyone who makes it through it. When I left college, I had a good foundation of the technical skills I needed to make a living online, but I didn&#8217;t have the business sense.</p>
<p>I took an entry-level job working in the online advertising department at <a title="media general" href="http://www.mediageneral.com">Media General</a> (a pretty big news corporation in the southeast). I made considerably less money in that position than I would have as a programmer, but it was a trade-off I was willing to make for more exposure to the business side of running a website.</p>
<p>I ended up learning a ton about how the advertising business works on the internet, and it wasn&#8217;t long before I started building my own affiliate sites in my spare time and applying what I learned at work (for the following five years, I would spend 2-3 hours a night working on my sites after the kids went to bed. That&#8217;s what it takes when you have a job, wife and kids. There is no golden bullet.).</p>
<p>I learned SEO as I went along, and with a lot of practice I started getting pretty good at it. I eventually took over SEO for Media General, and it wasn&#8217;t too long before I quit for an in-house SEO position at Snagajob. And again, I applied everything I learned to my own sites.</p>
<p>I enjoyed my job, and I worked with great people. But I&#8217;d started noticing something about myself. I was taking things too seriously. I was losing my perspective on what&#8217;s really important (not business cards). And I&#8217;d started to hit that point on the professional development scale where I was sacrificing freedom for money.</p>
<p>When I looked into my future, I could see only one path remaining: <strong>a cog</strong>.</p>
<p>It was nobody&#8217;s fault but own. And I didn&#8217;t like it.</p>
<h3>I quit</h3>
<p>On February 3rd, 2012 I quit my job. I&#8217;m hopeful that it&#8217;s the last job I&#8217;ll ever have to quit.</p>
<p>After five years of steady work, my affiliate sites were successful enough that I believed I could match my salary in six months with full-time dedication.</p>
<p>I hope I&#8217;m right, but only time will tell. Either way, I&#8217;m happier now than I&#8217;ve been in years. I have the freedom that I&#8217;ve always needed to be happy. And I owe it all to rock and roll.</p>
]]></content:encoded>
			<wfw:commentRss>http://makeitrank.com/how-i-became-an-affiliate-marketer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.458 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-20 22:34:56 -->
<!-- Compression = gzip -->