<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>seOverflow</title>
	
	<link>http://www.seoverflow.com</link>
	<description>SEO Outsourcing by seOverflow</description>
	<lastBuildDate>Wed, 22 May 2013 21:48:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/seoverflow" /><feedburner:info uri="seoverflow" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://www.seoverflow.com/?pushpress=hub" /><item>
		<title>How to Redirect Uppercase URLs to Lowercase URLs Using Htaccess</title>
		<link>http://feedproxy.google.com/~r/seoverflow/~3/XxMez9HkrvY/</link>
		<comments>http://www.seoverflow.com/redirect-uppercase-urls-to-lowercase/#comments</comments>
		<pubDate>Wed, 15 May 2013 15:08:01 +0000</pubDate>
		<dc:creator>Alex Juel</dc:creator>
				<category><![CDATA[Technical SEO]]></category>

		<guid isPermaLink="false">http://www.seoverflow.com/?p=3758</guid>
		<description><![CDATA[Other than being annoying to geeks like me, there are plenty of reasons why you should redirect uppercase URLs to lowercase. Domain names, such as http://www.seOverflow.com, are not case-sensitive so you can display that however you&#8217;d like, whether it&#8217;s on the web or in marketing materials. Pages on your site however, such as this one,]]></description>
				<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-3761" alt="url-perspective" src="http://www.seoverflow.com/wp-content/uploads/2013/05/url-perspective.jpg" width="690" height="137" /></p>
<p>Other than being annoying to geeks like me, there are plenty of reasons why you should redirect uppercase URLs to lowercase.</p>
<p>Domain names, such as http://www.seOverflow.com, are not case-sensitive so you can display that however you&#8217;d like, whether it&#8217;s on the web or in marketing materials. Pages on your site however, such as this one, <a href="http://www.seoverflow.com/what-we-offer/link-building/" target="_blank">http://www.seoverflow.com/What-We-Offer/Link-Building/</a>, work differently.</p>
<ul>
<li>Case-sensitivity on Linux servers result in 404 errors</li>
<li>Google will consider upper and lowercase URLs different pages</li>
<li>Pages will show up as duplicates in analytics</li>
</ul>
<p><strong>Case sensitivity</strong>: Windows servers are normally not case-sensitive, but Windows servers typically cost more than Linux servers and do not have as many features as Linux, so most people choose to host their websites on Linux, which are case-sensitive. If you create a page on your site that has capital letters and someone tries to visit it with lowercase letters, they will see a 404 error page. This can also be a problem if the site goes through a redesign and all pages are changed to lowercase. All of those old URLs will become inaccessible and all of the links on the internet going to those pages will break. Many CMS&#8217;s like WordPress and Drupal will fix case sensitivity problems, even on a Linux server, in case you&#8217;re checkin&#8217;.</p>
<p><strong>Google gets confused</strong>: <a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=44231" target="_blank">Google sees non-www and www versions of a website as two different URLs</a> and the same goes for uppercase and lowercase versions of the same page. This can spread page authority and link equity among the two pages when instead you should be sending it all to one page and giving it the ability to rank as highly as possible.</p>
<p><strong>Analytics issues</strong>: I&#8217;m not sure how it works with other analytics programs, but in Google Analytics, I&#8217;ve heard that uppercase and lowercase versions of the same page show up separately, each with their own data. If you don&#8217;t think to look at data for both pages, you&#8217;re not getting an accurate representation of that page.</p>
<h2>Arghh! Why Do People Create Uppercase URLs Anyway?</h2>
<p><a href="http://www.seoverflow.com/wp-content/uploads/2013/05/oh-noes1.jpeg" rel="facebox" rel="attachment wp-att-3760"><img class="size-full wp-image-3760 alignright" alt="oh-noes" src="http://www.seoverflow.com/wp-content/uploads/2013/05/oh-noes1.jpeg" width="200" height="266" /></a></p>
<p>There are actually several good reasons why someone might want capitalize page URLs.</p>
<ul>
<li>Readability (Pay-Per-Click, print, or television)</li>
<li>Branding purposes</li>
<li>Some webmasters just think it looks better (ok, that&#8217;s not a good reason)</li>
</ul>
<p>Readability and branding are the most common reasons that people display their URLs with capital letters. You&#8217;ll see it all the time in pay-per-click ads and instead of clicking the ads, some people might copy and paste the URL into their browsers. Branding is another big reason for capitalizing letters in URLs, especially when handing out print materials that have special landing pages.</p>
<p>For any of the above reasons, someone might visit your website by typing the URL with capitalization, or they might type it in lowercase, even if you&#8217;ve displayed it capitalized. People might link to your site both ways too, so you need to make sure both uppercase and lowercase versions are accessible.</p>
<h2>Wipe Those Tears Away. Fixing Your URLs is Easy!</h2>
<p>If you only have a few pages with capitalized URLs, you can simply set up some easy 301 redirects. If you have a ton of pages that need to be redirected though, you&#8217;ll probably find it much easier to <a href="http://www.askapache.com/htaccess/rewrite-uppercase-lowercase.html" target="_blank">set a RewriteRule in htaccess to change all uppercase URLs to lowercase URLs</a>. Check out that link for everything you need to paste right into your htaccess file. There&#8217;s also much simpler code you can paste in your httpd.conf file, if you have access to it. I suggest doing this for all of your sites, whether you have a URL problem or not, just as a handy catchall to prevent problems in the future.</p>
<p>The author over at AskApache.com (&lt;&#8212;&#8212; See what I did there? Ha. I&#8217;m so funny.) says that this code won&#8217;t slow down the site in any way, so you have no reason not to just do this right now.</p>
<p>* image courtesy of <a href="http://www.flickr.com/photos/12910342@N08/3706820404/" target="_blank">CortneeB</a></p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/seoverflow/~4/XxMez9HkrvY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seoverflow.com/redirect-uppercase-urls-to-lowercase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seoverflow.com/redirect-uppercase-urls-to-lowercase/</feedburner:origLink></item>
		<item>
		<title>PPC Challenges Part 2</title>
		<link>http://feedproxy.google.com/~r/seoverflow/~3/Lsd1npplOgU/</link>
		<comments>http://www.seoverflow.com/ppc-challenges-part-2/#comments</comments>
		<pubDate>Mon, 13 May 2013 20:37:54 +0000</pubDate>
		<dc:creator>Billy Overin</dc:creator>
				<category><![CDATA[PPC]]></category>

		<guid isPermaLink="false">http://www.seoverflow.com/?p=3771</guid>
		<description><![CDATA[In Part 1, we talked about budgets and leveraging BING for your PPC campaigns.  Now, let’s really get our hands dirty with more about the PPC evolution. Account Settings Remember that there are four different types of keyword match-types available on Google, and you have to be prepared to use all of them and optimize]]></description>
				<content:encoded><![CDATA[<h6>In <a href="http://www.seoverflow.com/ppc-challenges/">Part 1</a>, we talked about budgets and leveraging BING for your PPC campaigns.  Now, let’s really get our hands dirty with more about the PPC evolution.</h6>
<p><b>Account Settings</b></p>
<p>Remember that there are four different types of keyword match-types available on Google, and you have to be prepared to use all of them and optimize your account based upon them. Break out your search and display campaigns separately. These are two entirely different beasts and need to be understood and approached as such.</p>
<p>Remember that Google now assumes you want to match for plurals on your keywords–adjust your settings if you don’t want Google to make an as&#8230;..</p>
<p>&nbsp;</p>
<p><b>Ad G</b><b>roup Organization</b></p>
<p>Break out your keywords into the smallest ad groups with similar match types.</p>
<p><img class=" wp-image-3782 alignleft" style="margin: 10px; border: 1px solid black;" alt="Thank you to http://hyperboleandahalf.blogspot.com/ for image" src="http://www.seoverflow.com/wp-content/uploads/2013/05/test-all-the-things1.jpg" width="234" height="242" /></p>
<p>(A co-worker describes the approach of adding hundreds of keywords to a single ad group as the “vomit approach” – love that – because it is often as successful at times as eating spoiled food and hoping to run a marathon after having done so.)</p>
<p>The search engines are going to reward you with a higher quality score, and (ultimately) a lower keyword bid if you avoid the “vomit approach”. Write your ads to be as specific as possible to the keywords in those groups. Create a theme in your ads that matches the key terms. And remember this one very important thing when it comes to your ads:</p>
<p>TEST TEST TEST TEST!</p>
<p>Test ad copy.</p>
<p>Test what is successful in one ad group and what works in other ad groups.</p>
<p>Test multiple variations of ad copy. The search engines are going to reward you and in turn your audience is going to reward you by providing more conversions.</p>
<p>&nbsp;</p>
<p><em id="__mceDel"><b>Keyword Considerations</b></em></p>
<p>Remember that your quality scores affect your keyword bids. It’s an inverse relationship: the lower your QS, the higher your bid. You’ve got to be willing to make the necessary changes such as including the key terms on the landing pages, adding negatives to the account, and writing ads that are tailored to the keywords in an ad group.</p>
<p>It’s not uncommon to see only broad match keywords or someone as daring as to add a few phrase matches–learn all four match-types and use them. Bid up the keywords that are working based upon a Cost Per Acquisition (CPA) and/or Return On Ad Spend (ROAS) goal. Bid down those that suck. Search for more specific keywords to add to your account via the search query report.</p>
<p>&nbsp;</p>
<p><b>Landing Pages</b></p>
<p>Another mistake we see is where someone will send a searcher to a very high level page and/or a landing page that has zero relevancy to the keywords. This tactic may have worked in the Wild West of PPC some 10+ years ago, but the search engines are about presenting the most relevant information to their audiences.</p>
<p>You’ve got to be willing to play this game if you want to be a player.</p>
<p>Remember your target audience when you create your landing pages. Take into consideration their level of understanding of the keywords used. Make sure you’ve got a call to action on the pages and place trust factors/testimonials on the pages themselves.</p>
<p>&nbsp;</p>
<p><b>Conversion Tracking</b></p>
<p>At a bare minimum, you should be utilizing AdWords tracking as well as BING tracking (if you’re advertising on BING). You should also make sure the tracking is accurate.</p>
<p>Why pay for paid search if you can’t properly gauge what is going on? Seriously?</p>
<p>Another free and highly recommended tracking option is Google Analytics. It takes a little more sophistication, but you are able to easily determine Cost Per Acquisition and/or ROAS goals using this.</p>
<p>Call tracking is also something that should be considered if you are receiving a fair number of leads and/or sales via the phone. Call tracking can often be integrated into Google Analytics, and your reports for clients. If your company is seeking sales leads based upon PPC &#8211; consider looking into an end-to-end CRM solution.</p>
<p>&nbsp;</p>
<p>Keep in mind that this piece only touches the surface of PPC optimization basics. Since PPC is constantly changing – keep checking the search engine blogs for enhancements as well as other blogs (such as seOverflow’s own blog) to stay abreast of what is going on in this dynamic world. Until next time….</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/seoverflow/~4/Lsd1npplOgU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seoverflow.com/ppc-challenges-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seoverflow.com/ppc-challenges-part-2/</feedburner:origLink></item>
		<item>
		<title>PPC Challenges Part 1</title>
		<link>http://feedproxy.google.com/~r/seoverflow/~3/TBG8moiPT6o/</link>
		<comments>http://www.seoverflow.com/ppc-challenges/#comments</comments>
		<pubDate>Wed, 08 May 2013 20:10:03 +0000</pubDate>
		<dc:creator>Billy Overin</dc:creator>
				<category><![CDATA[PPC]]></category>

		<guid isPermaLink="false">http://www.seoverflow.com/?p=3765</guid>
		<description><![CDATA[Pay per click is a constantly evolving landscape &#8211; whether it’s new competitors entering the competitive stage, or Google adding a new feature, or even a new tool coming along to help you deal with all of the changes. The changes are part of what keeps PPC fresh for us working in the field. The]]></description>
				<content:encoded><![CDATA[<p>Pay per click is a constantly evolving landscape &#8211; whether it’s new competitors entering the competitive stage, or Google adding a new feature, or even a new tool coming along to help you deal with all of the changes. The changes are part of what keeps PPC fresh for us working in the field. The challenge for every PPC manager is staying on top of all of these changes so you keep the account zooming along like a racecar (not as some fly-by-night agencies attempt to manage accounts by changing their clients’ oil every 3-5k miles&#8230; essentially ignoring everything else that needs to be done for accounts. Really the argument of what’s management vs. optimization &#8211; but this is an entirely different discussion.)</p>
<p><img class="alignnone size-medium wp-image-3766" alt="First Place Race Car Driver" src="http://www.seoverflow.com/wp-content/uploads/2013/05/MP900424356-300x200.jpg" width="300" height="200" /></p>
<p>&nbsp;</p>
<p>Below are a list of some of the things every PPC manager needs to be aware of and on top of inside a client’s account:</p>
<ol>
<li>Budget management</li>
<li>BING</li>
<li>Account settings</li>
<li>Ad group organization</li>
<li>Keyword considerations</li>
<li>Landing pages</li>
<li>Conversion tracking</li>
</ol>
<p>&nbsp;</p>
<p><b>Budget management</b></p>
<p>Managing a budget is a huge challenge. Let’s face it, not all of our clients have an unlimited budget at their disposal. Finding inexpensive keywords is not always a solution &#8211; especially in the law, medical, and insurance industries. Budgets can easily exceed what we’ve set for the account, and there are not a lot of easy solutions for this.</p>
<p>A limited budget can also limit your highest performing campaigns. A few options available are day-parting the account, continually searching through your search query report to uncover irrelevant keyword terms that are coming into the report, sticking to phrase &amp; exact match exclusively and/or praying to your old/new god of choice.</p>
<p>Just remember that if you are sticking to the phrase/exact match scenario that keyword expands are going to be limited–you’re going to miss out on expanding your account.</p>
<p>&nbsp;</p>
<p><b>Migrating your account from Google to BING</b></p>
<p>BING is something that you have to consider for your clients (it’s how you’re going to reach the Microsoft/Yahoo people out there). At seOverflow, we often have clients that are only advertising on Google. As an account matures and/or more budget becomes available, you really need to take a look at moving the client to BING. This transition is especially important in the eCommerce world. We suggest moving over your highest performing campaigns/ad groups, and then optimizing them on BING as the account progresses.</p>
<p>BING’s audience behavior is often different–ad copy responses and even keywords that are most successful are often very different here, and you need to be prepared to react differently in this space. Essentially, you can’t use the same cookie cutter approach you’ve developed for AdWords and expect it to be as successful on BING .</p>
<div>Stay tuned for <a href="http://www.seoverflow.com/ppc-challenges-part-2/">part 2 of the PPC Challenges</a>&#8230;..</div>
<img src="http://feeds.feedburner.com/~r/seoverflow/~4/TBG8moiPT6o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seoverflow.com/ppc-challenges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seoverflow.com/ppc-challenges/</feedburner:origLink></item>
		<item>
		<title>PPC Quality Score Tips</title>
		<link>http://feedproxy.google.com/~r/seoverflow/~3/HasVX6rMJRQ/</link>
		<comments>http://www.seoverflow.com/ppc-quality-score-tips/#comments</comments>
		<pubDate>Thu, 02 May 2013 14:42:12 +0000</pubDate>
		<dc:creator>Billy Overin</dc:creator>
				<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[PPC]]></category>

		<guid isPermaLink="false">http://www.seoverflow.com/?p=3753</guid>
		<description><![CDATA[Many new clients run into issues around their Quality Score, and they sometimes are not certain what this is &#8211; or even how to address it. In its simplest terms, BING and Google take a look at these major factors when considering Quality Score: Landing page relevancy to the keywords and ad copy Ad copy]]></description>
				<content:encoded><![CDATA[<p>Many new clients run into issues around their Quality Score, and they sometimes are not certain what this is &#8211; or even how to address it.</p>
<p>In its simplest terms, BING and Google take a look at these major factors when considering Quality Score:</p>
<ul>
<ol>
<li>Landing page relevancy to the keywords and ad copy</li>
<li>Ad copy and how it relates the landing pages and keywords in the ad groups</li>
<li>Keywords and how they work with the landing pages and ad copy</li>
<li>Click-Through-Rate</li>
<li>Account history</li>
</ol>
</ul>
<p>Here are some PPC quality score tips we’ve discovered at seOverflow on how to improve your quality score:</p>
<ul>
<li><img class="size-medium wp-image-3756 alignright" style="margin: 10px;" alt="PPC Quality Score" src="http://www.seoverflow.com/wp-content/uploads/2013/05/Screen-Shot-2013-05-02-at-1.54.53-PM-300x187.png" width="300" height="187" />Create tightly themed ad groups. What we mean by this is you need to keep keywords that are similar to one another in the ad group. Place no more than 20 keywords inside the ad group.</li>
<li>Keep all broad, expanded broad, phrase, and exact keywords in their own ad groups. Add negatives of the 3 match types not in that ad group.</li>
<li>Create ad copy that has relevant keywords inside the ads. Continually look for your highest trafficked terms and/or highest converting terms. Use these in the ad copy.</li>
<li>Use the {KeyWord} insert on Google or {Param2} on BING Yahoo. This allows whatever the individual searched on to be included in the ad itself. (If you’re bidding on competitor terms &#8211; don’t use this. You may get a cease &amp; desist letter and/or shame.)</li>
<li><em id="__mceDel"><em id="__mceDel"></em></em>Continually test ad copy (at least A/B testing &#8211; perhaps A/B/C or even A/B/C/D for your top performers). If something is working &#8211; figure out why. Replicate this in this ad group and in others.</li>
<li>Continually search for negative keywords in Google’s Search Query Report. This will improve your click-through-rate by eliminating irrelevant searches.</li>
<li>Make sure the landing pages are relevant to your ad copy and keywords by adding your most relevant keywords (highest trafficked terms and/or highest converting terms) to the landing pages.</li>
</ul>
<p>Quality score improvement is an ongoing and continuous process. Your competitors are likely doing it. If they aren’t &#8211; it will keep you one step ahead of them. If they are, and you are not &#8211; then you’re falling behind.</p>
<img src="http://feeds.feedburner.com/~r/seoverflow/~4/HasVX6rMJRQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seoverflow.com/ppc-quality-score-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seoverflow.com/ppc-quality-score-tips/</feedburner:origLink></item>
		<item>
		<title>5 Ways to Building and Maintaining Healthy and Happy Relationships with Clients</title>
		<link>http://feedproxy.google.com/~r/seoverflow/~3/YDn3k3Q3Byk/</link>
		<comments>http://www.seoverflow.com/5-ways-to-building-and-maintaining-healthy-and-happy-clients/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 19:05:05 +0000</pubDate>
		<dc:creator>Tommy Bailey</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.seoverflow.com/?p=3725</guid>
		<description><![CDATA[At seOverflow we are very blessed to have an amazing amount of top-notch clients.  I give a lot of credit to Alexis, our Sales Director, and our referral partners for sending us awesome leads that eventually convert to great clients!   Though, the majority of our clients are very responsive and great to work with, occasionally]]></description>
				<content:encoded><![CDATA[<p>At seOverflow we are very blessed to have an amazing amount of top-notch clients.  I give a lot of credit to Alexis, our Sales Director, and our referral partners for sending us awesome leads that eventually convert to great clients!   Though, the majority of our clients are very responsive and great to work with, occasionally we’ll get one that can be very challenging.</p>
<p>How, you might ask?  Maybe their expectations aren’t realistic.  Maybe they are so busy or unresponsive it’s hard to meet deadlines and a relatively short project can drag on for months.  Or maybe they’ve been burned by an unprofessional and subpar SEO company in the past; which can lead to lingering trust issues and a need to micro-manage the project, therefore stifling the work flow.</p>
<p>So what can Agencies do to either avoid these issues or at least lessen the potential of them during the project?  There are many and you are likely already familiar with some, but let’s take a minute to look at 5 basic ways we can help ensure our client’s needs are top priority while working in a way we, SEO professionals, can do what we do best.</p>
<p>1) Weeding out potential clients in the sales process that are not a good ‘fit’</p>
<p><a href="http://www.seoverflow.com/wp-content/uploads/2013/04/weeding.jpg" rel="facebox" rel="attachment wp-att-3729"><img class="aligncenter size-full wp-image-3729" alt="weeding out clients" src="http://www.seoverflow.com/wp-content/uploads/2013/04/weeding.jpg" width="274" height="184" /></a></p>
<p>No one really wants to turn away business, but after a few “problem” clients it doesn’t take long to notice certain patterns that almost always convert clients to unhappy campers once the project gets underway.  Red flags include clients wanting to rush through the process, clients who want premium services on an underfunded budget, and clients who only want to sign a contract for X amount of hours but we know good and well it could easily take double that to produce the results they are expecting.  Finally, often times we speak with potential clients who have unrealistic expectations; they are competing for highly competitive keywords and expect immediate results.</p>
<p>Lesson here – it will probably save an Agency a lot of time, headache and money to tell a client “we’re not a good fit for you” rather than bringing on these type of clients time after time, which easily can end in both sides being unhappy. Of course, whether to bring on a potentially <i>problem</i> client has to be looked at objectively and quantitatively rather than from the perspective of “I think this client could be a pain in the ass.”   Bottom line…propose a clear and concise contract, explaining it thoroughly to the client during the sales process and reiterate it during the initial project kick-off call, making sure all parties are on the same page with goals &amp; expectations.</p>
<p>2) Kick-Off Meeting</p>
<p><a href="http://www.seoverflow.com/wp-content/uploads/2013/04/kick-off-meeting.jpg" rel="facebox" rel="attachment wp-att-3727"><img class="aligncenter size-full wp-image-3727" alt="kick-off meeting" src="http://www.seoverflow.com/wp-content/uploads/2013/04/kick-off-meeting.jpg" width="329" height="153" /></a></p>
<p>It is essential to setup a kick-off meeting between the key players of your team and the Clients at the onset of a project.  Face to face is preferable, but video or phone is the majority of what we do at seOverflow given our clients are all around the US and world!</p>
<p>This initial meeting will start the relationship building that is all-important in short and long term projects.  Second to the sales process, I think this is the most important juncture where an Agency can contribute significantly, and positively, to the client’s overall satisfaction of the project.  You’ve got to connect with the client and communicate everyone’s needs during this call.  You not only get to know who you will be working with but you will learn what their company’s needs are; today’s needs, next month’s needs, and long term needs/goals.  If all goes well you’ll probably find things your client didn’t know that they needed; if not in the kick-off meeting definitely somewhere later in the process.  When this happens the client knows you’ve got their best interest at heart and they aren’t just another project of the month.</p>
<p>The final details I cover in a kick-off meeting are some of the specifics of the contract – the scope of work.  It is helpful to reiterate the numbers of hours to be worked, deliverables, time frame, et cetera.  This will help prevent problems later on and is another step to wash away assumptions and setup <b>clear expectations</b> for both parties.</p>
<p>3) Phone calls</p>
<p><a href="http://www.seoverflow.com/wp-content/uploads/2013/04/phone-call.jpg" rel="facebox" rel="attachment wp-att-3728"><img class="aligncenter size-full wp-image-3728" alt="phone call" src="http://www.seoverflow.com/wp-content/uploads/2013/04/phone-call.jpg" width="238" height="133" /></a></p>
<p>I am the first to attest it is so much easier to send a client an email than to call them on the phone.  Yes, the majority of my correspondence with clients is via email but there are times when a phone call could prove more beneficial. Good times to call your clients include:</p>
<p>-          If you haven’t heard from them in a while or they are non-responsive to email</p>
<p>-          If something exciting or new has happened; an increase in rankings, traffic and/or conversions for example</p>
<p>-          To clarify technical issues that could be better explained via phone</p>
<p>-          To schedule a meeting</p>
<p>I could add a lot more here but you get the point. It’s about connecting with our clients in a more personal level.  Not only are you connecting interpersonally with them,  it is more organic and you may end up talking about or resolving a few other issues that would not have come out of a single email.</p>
<p>4) Transitions/Hand-Offs</p>
<p><a href="http://www.seoverflow.com/wp-content/uploads/2013/04/hand-off-meeting.jpg" rel="facebox" rel="attachment wp-att-3726"><img class="aligncenter size-full wp-image-3726" alt="hand-off meeting" src="http://www.seoverflow.com/wp-content/uploads/2013/04/hand-off-meeting.jpg" width="231" height="163" /></a></p>
<p>At seOverflow we have a soft transition from On-Page SEO to the Link Building side of things.  It is important for one or more of the On-Page team to join the transition meeting into the Link Building phase.  This is a great time to not only introduce new members of the team, but to be a familiar voice and to answer any lingering questions before the client transitions into a new phase of the project. Clients don’t necessarily want to feel shuffled around.  If they know they have at least one person who has a pulse on the project they are much more open to staff changes.</p>
<p>5) Communicate, communicate, communicate</p>
<p><a href="http://www.seoverflow.com/wp-content/uploads/2013/04/communication.jpg" rel="facebox" rel="attachment wp-att-3730"><img class="aligncenter size-full wp-image-3730" alt="communication" src="http://www.seoverflow.com/wp-content/uploads/2013/04/communication.jpg" width="225" height="225" /></a></p>
<p>This isn’t really a step; it should have been present from the beginning; through the sales process, kick-off meeting, emails and phone calls, and project transitions.  It is much easier to talk about something before it happens, than to talk about how to fix something after it happens – be proactive!  Remember, your clients are human beings just like you.  Sometimes they will have a bad day, sometimes they will forget deadlines or meetings, sometimes they will mess something up – it’s ok.  As long as there has been a strong foundation of communication throughout the project everything should be alright.  You can always reschedule meetings and make new deadlines; you cannot, however, gain trust or active and willing participation from a client if all you do is send boiler plate emails and not engage the human side of the relationship.</p>
<img src="http://feeds.feedburner.com/~r/seoverflow/~4/YDn3k3Q3Byk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seoverflow.com/5-ways-to-building-and-maintaining-healthy-and-happy-clients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seoverflow.com/5-ways-to-building-and-maintaining-healthy-and-happy-clients/</feedburner:origLink></item>
		<item>
		<title>Traffic Drop Checklist: Start with the Obvious</title>
		<link>http://feedproxy.google.com/~r/seoverflow/~3/R0vHfxcr008/</link>
		<comments>http://www.seoverflow.com/traffic-drop-checklist/#comments</comments>
		<pubDate>Tue, 02 Apr 2013 17:54:28 +0000</pubDate>
		<dc:creator>Mike Vallano</dc:creator>
				<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Technical SEO]]></category>

		<guid isPermaLink="false">http://www.seoverflow.com/?p=3711</guid>
		<description><![CDATA[You’ve got a site that has dropped in the rankings and your organic traffic is in the tank. What do you do? Before you spend hours diving into technical SEO issues and wondering if which of your sketchy links got you bitten by Penguin, Check the obvious! Disclaimer: After having spent HOURS looking into potential]]></description>
				<content:encoded><![CDATA[<p>You’ve got a site that has dropped in the rankings and your organic traffic is in the tank.</p>
<p>What do you do?</p>
<p><a href="http://www.seoverflow.com/wp-content/uploads/2013/04/Freak-Out-and-Curse-SEO.png" rel="facebox" rel="attachment wp-att-3712"><img class="alignnone  wp-image-3712" alt="Freak Out and Curse SEO" src="http://www.seoverflow.com/wp-content/uploads/2013/04/Freak-Out-and-Curse-SEO.png" width="240" height="359" /></a></p>
<p>Before you spend hours diving into technical SEO issues and wondering if which of your sketchy links got you bitten by Penguin, <strong>Check the obvious!</strong></p>
<p><em>Disclaimer</em>: After having spent HOURS looking into potential reasons for a traffic drop on a client site only to notice a site-wide noindex tag, you would think I would have learned my lesson. Nope. It had to happened TWO more times before I had finally had enough and created a checklist.</p>
<p>The other day I had a client ask me to look into why traffic had dropped and my first idea was to start looking at the link profile. Then I remembered this checklist, started there, and I noticed the noindex,nofollow tag site-wide. Finding that saved me untold time of checking other things. Check the obvious first!</p>
<p><a href="http://www.seoverflow.com/wp-content/uploads/2013/04/off-the-cliff.png" rel="facebox" rel="attachment wp-att-3713"><img class="alignnone size-full wp-image-3713" alt="off the cliff" src="http://www.seoverflow.com/wp-content/uploads/2013/04/off-the-cliff.png" width="467" height="160" /></a></p>
<p><strong>Side note</strong>: I have no idea why adding a noindex,nofollow tag site-wide is such a common occurrence. DO NOT DO THIS!</p>
<p>Anyway, whether you manage clients or work in-house, it is likely that there are people that can access your sites and make changes without checking with you. These people often don’t think about SEO when they are making changes and when something goes wrong, it is super helpful to have a checklist that starts with the most obvious things first.</p>
<p>Here&#8217;s the checklist I&#8217;ve been using and I hope it saves you time and headaches in the future:</p>
<p><strong>Step 1: Check the Obvious</strong> (aka <a title="aint got not gas in it" href="http://www.youtube.com/watch?v=G-tCIRJH9p0" target="_blank">It ain’t got no gas in it</a>)</p>
<ul>
<li>Check robots.txt file: is the whole site or major sections of the site blocked?</li>
<li>Check for noindex tag: check the homepage and a couple main pages to see if the noindex tag has been applied site-wide.</li>
<li>Check to see if there is a canonical tag referencing the wrong version of the page (domain.com canonicaled to www.domain.com while www.domian.com is 301&#8242;d to domain.com)</li>
<li>Is Analytics still tracking? Has someone inadvertently removed the tracking code from some or all pages? Use <a href="http://www.seerinteractive.com/blog/screaming-frog-to-verify-google-analytics" target="_blank">Screaming Frog to check Analytics</a>.</li>
<li>Check GWT for any error messages, malware, hacking, unnatural link messages, etc.</li>
</ul>
<p>If it is not something easy to find (it has gas in it), you want gather more data and look at whether or not you’ve been hit by a Panda or Penguin update.</p>
<p><b>Step 2: Gather more Data and Check for Panda or Penguin</b></p>
<ul>
<li>When did the decrease start?</li>
<li>Is the traffic decrease seasonal (check year-over-year data) or is it due to ranking drops?</li>
<li>Is it a group of pages/keywords or is it site-wide?</li>
<li>Compare top keywords or keyword groups pre-drop and post-drop to narrow down what has been affected.</li>
<li>Was there successful PR or media mentions prior to the drop that temporarily inflated traffic numbers?</li>
<li>Does it correlate with an <a title="Algorithm updates" href="http://www.seomoz.org/google-algorithm-change" target="_blank">algorithm update</a>?</li>
<li>Is the drop just Google or across all search engines (compare post-decrease to pre-decrease and view by search engine)?</li>
</ul>
<p>There are lots of posts that do a great job on checking for those impacts (such as <a href="http://searchengineland.com/how-to-stop-the-panic-before-asking-have-i-been-panda-slapped-149034" target="_blank">this</a> and <a href="http://www.distilled.net/blog/seo/penguin-strategies/" target="_blank">this</a>), so I won’t go into detail here aside from generally cleaning up content and links.</p>
<p>If at this point you’ve ruled out the obvious and it’s not an algorithm update, now it&#8217;s the time to dig in deeper to see what’s doing.</p>
<p><b>Step 3: Potential Causes (other than Penguin or Panda)</b></p>
<p>Has anything changed on the site around the time of the decrease that could have had an impact? Review and document changes, and then determine if that&#8217;s the cause such as:</p>
<ul>
<li>Navigation changes</li>
<li>Page redirects</li>
<li>Copy changes</li>
<li>Title tag changes</li>
</ul>
<p><b>Step 4: Tools for Further Analysis</b></p>
<p>In addition to getting those answers, dig into some tools:</p>
<ul>
<li>Dig deeper into Google Webmaster Tools for any errors or issues (indexation, sitemaps, etc.)</li>
<li>Look at the campaign in SEOmoz for regular errors, etc.</li>
<li>Look at historical SEOmoz data: (campaign&gt;competitive analysis&gt;history) to see if their Moz metrics decreased over time and if it correlates to the drop.</li>
<li>Do a site:domain search and see if anything looks off.</li>
<li>Run the site through <a href="http://woorank.com/">http://woorank.com</a> and <a href="http://www.siteliner.com/">http://www.siteliner.com</a>.</li>
<li>Check out Raven’s Site Auditor.</li>
</ul>
<p><b>Step 5: Develop a Plan to Fix the Problem</b></p>
<ul>
<li>Compile your data in terms of the decrease timeframes and levels.</li>
<li>Work up a process for fixing the issues.</li>
<li>Communicate everything to the client or your boss.</li>
<li>Create tasks and a plan for fixing issues.</li>
<li>Monitor results and speak to it on your next report.</li>
</ul>
<p><strong>Step 6: Lessons Learned</strong></p>
<p>Once you&#8217;ve identified the problem and fixed it, use this as a learning opportunity to inform those that made the changes of their impacts so that similar things don&#8217;t happen in the future.</p>
<p>You can access this <a title="Traffic Drop Checklist" href="https://docs.google.com/a/seoverflow.com/spreadsheet/ccc?key=0AsGCrJAs5lVMdHJua1A1NU8xQUNFUHhKS29RTjFtX2c#gid=0" target="_blank">checklist in Google Spreadsheet format here</a> as well. Hopefully you won&#8217;t need it.</p>
<p>If you&#8217;ve got anything to add to the checklist please leave it in the comments.</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/seoverflow/~4/R0vHfxcr008" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seoverflow.com/traffic-drop-checklist/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.seoverflow.com/traffic-drop-checklist/</feedburner:origLink></item>
		<item>
		<title>seOverflow makes SEOmoz Recommended Companies List</title>
		<link>http://feedproxy.google.com/~r/seoverflow/~3/2CHtDykPtw8/</link>
		<comments>http://www.seoverflow.com/seoverflow-makes-seomoz-recommended-companies-list/#comments</comments>
		<pubDate>Thu, 14 Mar 2013 19:31:01 +0000</pubDate>
		<dc:creator>Alexis Gradishar</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[seOverflow]]></category>

		<guid isPermaLink="false">http://www.seoverflow.com/?p=3702</guid>
		<description><![CDATA[seOverflow is thrilled to announce that we just made the coveted SEOmoz recommended companies list . SEOmoz is known as one of the most credible SEO sources, and we are among the 50 companies worldwide to be in this illustrious club.]]></description>
				<content:encoded><![CDATA[<p>seOverflow is thrilled to announce that we just made the coveted <a href="http://www.seomoz.org/article/recommended" target="_blank">SEOmoz recommended companies list </a>. SEOmoz is known as one of the most credible SEO sources, and we are among the 50 companies worldwide to be in this illustrious club.</p>
<img src="http://feeds.feedburner.com/~r/seoverflow/~4/2CHtDykPtw8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seoverflow.com/seoverflow-makes-seomoz-recommended-companies-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seoverflow.com/seoverflow-makes-seomoz-recommended-companies-list/</feedburner:origLink></item>
		<item>
		<title>Why Use Unique eCommerce Website Copy?</title>
		<link>http://feedproxy.google.com/~r/seoverflow/~3/Gac8F4TZ-sM/</link>
		<comments>http://www.seoverflow.com/why-use-unique-ecommerce-website-copy/#comments</comments>
		<pubDate>Tue, 29 Jan 2013 19:50:51 +0000</pubDate>
		<dc:creator>Rick Ramos</dc:creator>
				<category><![CDATA[eCommerce SEO]]></category>

		<guid isPermaLink="false">http://www.seoverflow.com/?p=3686</guid>
		<description><![CDATA[eCommerce is highly competitive. Learn how to set your website apart from your competitors in the eyes of your users and to Googlebot.]]></description>
				<content:encoded><![CDATA[<p>Duplicate content is a problem that can keep your website from getting the higher rankings that it otherwise would. This is a no brainier. Anyone who knows how to optimize websites knows this, and we build our information architecture in a way that insures our product pages don’t appear on different URLs. If they do, we know how to canonicalize the more important version. With the different methods that we can employ to prevent an eCommerce website from duplicating its own content, plenty of seasoned and competent webmasters are still using boilerplate copy on their product pages.</p>
<p>Boilerplate copy is the paragraph or so of text, usually provided by the manufacturer or distributor, that can be used over and over again to describe the products that retailers are selling. These pre-written product descriptions are a major time-saver to eCommerce webmasters, particularly if they have thousands upon thousands of products in their catalog.  Many retail websites get descriptions for their products directly from a third-party product feeds and other sources that share the same content with hundreds, or thousands of other websites.</p>
<h2>But competitor X uses the same boilerplate copy as I do and they outrank me by miles! Why don’t they get a duplicate content penalty?</h2>
<p>First of all, your website will not be <a href="http://googlewebmastercentral.blogspot.com/2008/09/demystifying-duplicate-content-penalty.html" target="_blank">penalized for using boilerplate content</a>.  If you have a bunch of duplicate content across a bunch of domains that is clearly intended to manipulate search rankings, then yes…you will be penalized. Beyond that, Google wants to do it’s best to show only unique documents in their search results. In order to do this efficiently, duplicate versions are filtered out and Google attempts to serve the document hosted by the strongest website.</p>
<p>While you’re not being penalized, you are not really giving search engines any content that sets you apart from anyone else who uses the same text. If content is king then why would you let someone force search engines to choose some other way to rank and index your pages? </p>
<p>When Google finds two nearly identical pages on the Web, it will pick the one with higher PageRank to serve in its results. According to a paper published by Google researchers Daniel Peng and Frank Dabek, <em>even inbound links will be forwarded from the lower ranking page to the highest ranking one</em>. The paper this was published in is called <a href="http://research.google.com/pubs/pub36726.html" target="_blank">Large-scale Incremental Processing Using Distributed Transactions and Notifications</a>, from 2010, and it is every bit as action-packed as the title would have you believe.</p>
<p>Here’s an interesting example… While researching this post, I went around and asked my coworkers to name a product they use every day. One of our link building managers suggested face-wash, and I randomly chose <u>Neutrogena® Fresh Foaming Cleanser</u>. The only duplicate copy on the first page of results is shared by drugstore.com (ranking second after the manufacturer) and amazon.com, which ranks fourth after a Google Image Search seven-pack. </p>
<h3>There is one pair of page-1 results that use the same copy</h3>
<p><img src="http://www.seoverflow.com/wp-content/uploads/2013/01/face-wash-e1359486179715.png" alt="duplicate SEO descriptions" width="600" height="498" class="aligncenter size-full wp-image-3687" /></p>
<p>Without even looking, I think we can agree that Amazon has a far better domain authority (DA 100) than Drugstore.com (DA 86).  It appears that Drugstore.com has a leg-up Amazon in <strong>URL-level metrics</strong>. Page Authority is a little bit higher than Amazon, and their Trust &#038; Citation Flow are significantly higher. Furthermore Drugstore.com has better mozTrust and mozRank. This tells me that it most likely has has a stronger and more diverse link profile, while Amazon has garbage.<br />
<img src="http://www.seoverflow.com/wp-content/uploads/2013/01/page-authority-e1359485929817.png" alt="page-authority" width="600" height="389" class="aligncenter size-full wp-image-3688" /></p>
<p>If you’re having trouble figuring out why your competitor’s pages are ranking for a particular search, when they have the same text content as you do, this is one of the biggest factors to consider. When the text is the same from website to website, Google has to choose factors besides content to decide where to rank your pages.</p>
<h2>…and it’s not just bad for search engine rankings.</h2>
<p>You sell your products to people who have, in many cases, hundreds or thousands of your competitors to choose from. It is far easier for your business to achieve success when you set yourself apart from your competitors.  </p>
<p>Navigate to a popular manufacturer’s web page, choose a product, and copy the product description. Paste the text into Google and see how many websites use the exact same words. In the case of this Sony Alpha a37 SLT-A37K DSLR camera, Google found over 42,000 pages that use the same text as the features paragraph from store.sony.com. You also see that Sony’s own store ranks #2 instead of #1.</p>
<p><img src="http://www.seoverflow.com/wp-content/uploads/2013/01/seo-ecommerce-example-e1359486439764.png" alt="duplicate copy SERPs" width="600" height="561" class="aligncenter size-full wp-image-3689" /></p>
<p>Ok, so what? Your customer isn’t typing boilerplate text into a search engine, so this doesn’t mean much, right? Try querying just the product name, without quotes, the same way that your customer might. In this example, I queried <u>Sony Alpha a37 SLT-A37K DSLR camera with Translucent Mirror Technology</u>.</p>
<p><img src="http://www.seoverflow.com/wp-content/uploads/2013/01/copy-ecommerce-seo-e1359486904525.png" alt="eCommerce SEO Copy" width="600" height="860" class="aligncenter size-full wp-image-3690" /></p>
<p>Six out of the ten page #1 results are retail websites. Five of them have pretty much the same pricing, although one was about $100 higher. Ritz Camera and Dell both use the manufacturer’s copy in their meta descriptions. Only Dell uses the boilerplate text in the body of the page. All of the other pages, besides store.sony.com, appear to use unique, descriptive content that is useful and tries to guide users into making a purchasing decision. In addition there are glossaries, consumer reviews, shipping deals, special promotions and other content that is unique to each specific website. </p>
<h3>The Bottom Line</h3>
<p>The most successful eCommerce websites use their pages to entice, engage and inform shoppers. Besides just describing products, they offer their visitors authority, trust and attempt express to users why their website is the best one to buy from. Search around a little bit more and you will see that even top-ranking websites that use boilerplate copy also use original and useful content that ranks well, attracts links naturally and converts shoppers.</p>
<p>Using original content is necessary to get the most value out of your eCommerce website’s category and product pages. Google considers duplicate content to be a bad user experience, and will try its best to filter out all documents but the one on the website it considers to be the most important. Creating unique and helpful content will provide trust and authority to shoppers, and will increase the likelihood that they will choose your shop to purchase from. Let your original, helpful and engaging content be the first ranking factor Google has to choose from.</p>
<p>Lastly, it should be said that copy alone is not going to solve your ranking problems. eCommerce is a fast-growing and highly competitive field. A strong site, with clean code and a healthy backlink profile working together with unique and engaging product copy is the best and most efficient way to improve your search engine rankings. One of the secrets to having a strong site is making sure that you stand out from your competition in as many different ways as you can. By making sure the information on your site is unique, helpful and popular you are creating a concrete foundation on which to build your website to be a better marketing vehicle then even Amazon.com, in some cases.</p>
<h3>Why should I take your word for it?</h3>
<p>You don’t have to. Have a look at what Matt “Cueball” Cutts had to say about it…</p>
<p><iframe width="500" height="281" src="http://www.youtube.com/embed/JFNK8gSDxHA?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>This is the result of the first round of eCommerce copy research. I would love to know more about your experience and insight. Please don&#8217;t hesitate to leave some of the benefit of your own experience.</p>
<img src="http://feeds.feedburner.com/~r/seoverflow/~4/Gac8F4TZ-sM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seoverflow.com/why-use-unique-ecommerce-website-copy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seoverflow.com/why-use-unique-ecommerce-website-copy/</feedburner:origLink></item>
		<item>
		<title>eCommerce Link Building Advice for 2013</title>
		<link>http://feedproxy.google.com/~r/seoverflow/~3/ClPjcS0L5Vc/</link>
		<comments>http://www.seoverflow.com/ecommerce-link-building-advice-for-2013/#comments</comments>
		<pubDate>Mon, 14 Jan 2013 18:56:56 +0000</pubDate>
		<dc:creator>Alexis Gradishar</dc:creator>
				<category><![CDATA[eCommerce SEO]]></category>
		<category><![CDATA[Link Building]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.seoverflow.com/?p=3678</guid>
		<description><![CDATA[Starting out 2013 with a successful Link Building program for your eCommerce website is going to be a key factor in having a successful year. BuzzStream recently invited 6 SEO experts, including seOverflow&#8217;s Everett Sizemore, to provide their top tips on eCommerce Link Building in 2013. For more information on how the link building experts]]></description>
				<content:encoded><![CDATA[<p>Starting out 2013 with a successful Link Building program for your eCommerce website is going to be a key factor in having a successful year.</p>
<p><a href="http://www.buzzstream.com/blog/ecommerce-link-building-in-2013.html" target="_blank">BuzzStream</a> recently invited 6 SEO experts, including seOverflow&#8217;s Everett Sizemore, to provide their top tips on <a href="http://www.buzzstream.com/blog/ecommerce-link-building-in-2013.html" target="_blank">eCommerce Link Building in 2013</a>.</p>
<p>For more information on how the link building experts at seOverflow can build a successful 2013 campaign for your eCommerce website, please contact Alexis Gradishar at 303-905-1504 ext 1819 or alexis@seoverflow.com.</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/seoverflow/~4/ClPjcS0L5Vc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seoverflow.com/ecommerce-link-building-advice-for-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.seoverflow.com/ecommerce-link-building-advice-for-2013/</feedburner:origLink></item>
		<item>
		<title>The Mechanics of On-Page SEO</title>
		<link>http://feedproxy.google.com/~r/seoverflow/~3/91MTn8znCDA/</link>
		<comments>http://www.seoverflow.com/the-mechanics-of-on-page-seo/#comments</comments>
		<pubDate>Fri, 07 Dec 2012 20:51:13 +0000</pubDate>
		<dc:creator>Rick Ramos</dc:creator>
				<category><![CDATA[Technical SEO]]></category>

		<guid isPermaLink="false">http://www.seoverflow.com/?p=3661</guid>
		<description><![CDATA[If there is one thing about search engine optimization that you can safely bet on, it&#8217;s that it will change. I began my SEO career a little later than many of my colleagues. I never got to see the explosive benefits that a website would get from mass directory submissions, reciprocal links or nofollow PageRank]]></description>
				<content:encoded><![CDATA[<p>If there is one thing about search engine optimization that you can safely bet on, it&#8217;s that it will change. I began my SEO career a little later than many of my colleagues. I never got to see the explosive benefits that a website would get from mass directory submissions, reciprocal links or nofollow PageRank sculpting. By the time I was cutting my teeth, many of those activities were being phased out by Google&#8217;s strategic algorithm updates. Penalties were issued for this hack or that one, until February 2011 when Google rolled out a serious update that shook up 12% of all search results.</p>
<p><img class="alignright size-medium wp-image-3664" title="penguin and panda" src="http://www.seoverflow.com/wp-content/uploads/2012/10/penguin-panda-300x300.jpg" alt="Panda and Penguin updates" width="200" height="200" />It was after this update happened that the message became crystal clear. Google is ultimately concerned with relevance and user experience. Any attempt to circumvent either, or both, of these concepts will be met with a rankings struggle. Pages with thin or useless content, content farms and sites with ads that outweigh content were hit hard. In April of this year, Google rolled out another major update that was intended to crack-down on spam, over-optimization and links that don&#8217;t add value to a user&#8217;s experience on your website.</p>
<p>These updates didn&#8217;t shake up the way I was doing things, however. As far as my SEO philosophy was concerned things like advertisement-heavy microsites, irrelevant content and dodgy link schemes have no place in any website that was valuable enough to get a marketing budget. That&#8217;s not to say there isn&#8217;t a toolbox of super-cool tricks that any SEO can use to increase your ranking potential for a set of target keywords. The secret is learning how to work together with search technology in a way that not only makes your site easier to crawl and index, but also improves the overall experience for your visitors.</p>
<p>Earlier this year <strong>Search Engine Land</strong> published a post comparing a SEO account manager to a <a href="http://searchengineland.com/seo-baggage-from-account-managers-to-seo-account-janitors-128561">SEO janitor</a>. It&#8217;s a great post, and I recommend that you spend some time reading it. While a lot of on-page work involves scrubbing previous SEO&#8217;s activities, cleaning up old code, devalued strategies and polishing up keyword targets, the janitor comparison doesn&#8217;t begin to come close to describing how cool a job like this really is.</p>
<div id="attachment_3665" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-3665" title="Pagerank Flow" src="http://www.seoverflow.com/wp-content/uploads/2012/10/page-rank-flow-300x190.gif" alt="On-page SEO pumps pagerank through a website" width="300" height="190" /><p class="wp-caption-text"><a href="”">Image Credit</a></p></div>
<p>Each and every website that you visit is a machine with an engine, style and a functional purpose. As with any machine, your website needs regular maintenance. SEO tactics that <a href="http://www.seoverflow.com/how-link-building-has-changed-since-2005/">worked 6-7 years ago</a> don&#8217;t always hold up as well today. Maybe you designed your site&#8217;s navigation to disperse internal PageRank with nofollow attributes. Since Google changed the way links consume PageRank in 2008, all this fancy nofollow menu will do today is absorb valuable authority without passing it on to your other important pages. Removing these nofollow attributes from your menu will allow PageRank to flow freely and naturally through your website. More importantly, search engine robots will be able to navigate your site with the same natural flow.</p>
<p>Perhaps your web developer thought that they could raise your local rankings by making exact duplicates of your website on 15-20 geo-targeted subdomains. While this could potentially raise your rankings for a little while, your site will ultimately be caught by Google&#8217;s duplicate content filter, which can make a <a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=66359">ranking adjustment</a> that would cause your site to disappear from search.</p>
<div id="attachment_3668" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-3668" title="nofollow-pagination" src="http://www.seoverflow.com/wp-content/uploads/2012/10/nofollow-pagination-300x225.jpg" alt="Pagination and nofollow" width="300" height="225" /><p class="wp-caption-text"><a href="”http://www.flickr.com/photos/fboyd/5376263305/”">Image Credit</a></p></div>
<p>In order to avoid accidental duplicate content, many webmasters would choose to noindex/nofollow paginated blog archives. Since Google announced <a href="http://googlewebmastercentral.blogspot.com/2011/09/pagination-with-relnext-and-relprev.html">pagination with rel=“next” and rel=“prev”</a>, blog archive pages no longer have to weigh down the rest of your site. Whether or not they know it, many webmasters are adding next/prev and canonical tags to pages that also employ noindex/nofollow. All this will do is add three lines of code that are basically useless; sort of like installing seat belts in a car with no wheels.</p>
<p>While going through your website we&#8217;re looking at all the individual parts, how they work together and how easily a search engine spider can crawl from page to page. One of our key <strong>on-page optimization</strong> goals is to make sure that a spider can get through your website as efficiently as possible, while picking up as much key information that we give it. While it shoots through your site we make sure that it can see every important detail of your web pages, in the way that you intend it to be seen. Do you need Google to understand that your three business locations use the same phone number? If you have three different addresses on your contact page, how will search engines know which location to display to someone searching from a specific region?</p>
<p><img class="alignleft size-medium wp-image-3669" title="search engine" src="http://www.seoverflow.com/wp-content/uploads/2012/10/search-engine-300x232.jpg" alt="Search engine" width="200" />As the newest member of the on-page optimization team at <strong>seOverflow</strong>, it is my goal to help you bring your website to a high standard of efficiency. I check to make sure your keywords are appropriately framed in solid content. I look at all of the moving parts to clean out any blockages (crawl issues), make sure that they are well-oiled (updated keyword strategy) and free of rust (outdated SEO tactics), and ready to be topped off with a full tank of fuel (link building). Regardless of what type of machine your website is, from a luxury sedan to a zippy little rat-rod, or even a charter bus; regular on-page maintenance will keep your site up with the latest search technology standards and maximize the potential of your <strong>ongoing SEO</strong> program.</p>
<img src="http://feeds.feedburner.com/~r/seoverflow/~4/91MTn8znCDA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.seoverflow.com/the-mechanics-of-on-page-seo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.seoverflow.com/the-mechanics-of-on-page-seo/</feedburner:origLink></item>
	</channel>
</rss>
