WordPress Theme built by Shufflehound. © 2014 - 2019 VII Digital (7Digital LLC)

Uncovering SEO Opportunities via Log Files

Posted by RobinRozhon

I use web crawlers on a daily basis. While they are very useful, they only imitate search engine crawlers’ behavior, which means you aren’t always getting the full picture.

The only tool that can give you a real overview of how search engines crawl your site are log files. Despite this, many people are still obsessed with crawl budget — the number of URLs Googlebot can and wants to crawl.

Log file analysis may discover URLs on your site that you had no idea about but that search engines are crawling anyway — a major waste of Google server resources (Google Webmaster Blog):

“Wasting server resources on pages like these will drain crawl activity from pages that do actually have value, which may cause a significant delay in discovering great content on a site.”

While it’s a fascinating topic, the fact is that most sites don’t need to worry that much about crawl budget —an observation shared by John Mueller (Webmaster Trends Analyst at Google) quite a few times already.

There’s still a huge value in analyzing logs produced from those crawls, though. It will show what pages Google is crawling and if anything needs to be fixed.

When you know exactly what your log files are telling you, you’ll gain valuable insights about how Google crawls and views your site, which means you can optimize for this data to increase traffic. And the bigger the site, the greater the impact fixing these issues will have.

What are server logs?

A log file is a recording of everything that goes in and out of a server. Think of it as a ledger of requests made by crawlers and real users. You can see exactly what resources Google is crawling on your site.

You can also see what errors need your attention. For instance, one of the issues we uncovered with our analysis was that our CMS created two URLs for each page and Google discovered both. This led to duplicate content issues because two URLs with the same content was competing against each other.

Analyzing logs is not rocket science — the logic is the same as when working with tables in Excel or Google Sheets. The hardest part is getting access to them — exporting and filtering that data.

Looking at a log file for the first time may also feel somewhat daunting because when you open one, you see something like this:

Calm down and take a closer look at a single line:

66.249.65.107 - - [08/Dec/2017:04:54:20 -0400] "GET /contact/ HTTP/1.1" 200 11179 "-" "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"

You’ll quickly recognize that:

  • 66.249.65.107 is the IP address (who)
  • [08/Dec/2017:04:54:20 -0400] is the Timestamp (when)
  • GET is the Method
  • /contact/ is the Requested URL (what)
  • 200 is the Status Code (result)
  • 11179 is the Bytes Transferred (size)
  • “-” is the Referrer URL (source) — it’s empty because this request was made by a crawler
  • Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) is the User Agent (signature) — this is user agent of Googlebot (Desktop)

Once you know what each line is composed of, it’s not so scary. It’s just a lot of information. But that’s where the next step comes in handy.

Tools you can use

There are many tools you can choose from that will help you analyze your log files. I won’t give you a full run-down of available ones, but it’s important to know the difference between static and real-time tools.

  • Static — This only analyzes a static file. You can’t extend the time frame. Want to analyze another period? You need to request a new log file. My favourite tool for analyzing static log files is Power BI.
  • Real-time — Gives you direct access to logs. I really like open source ELK Stack (Elasticsearch, Logstash, and Kibana). It takes a moderate effort to implement it but once the stack is ready, it allows me changing the time frame based on my needs without needing to contact our developers.

Start analyzing

Don’t just dive into logs with a hope to find something — start asking questions. If you don’t formulate your questions at the beginning, you will end up in a rabbit hole with no direction and no real insights.

Here are a few samples of questions I use at the start of my analysis:

  • Which search engines crawl my website?
  • Which URLs are crawled most often?
  • Which content types are crawled most often?
  • Which status codes are returned?

If you see that Google is crawling non-existing pages (404), you can start asking which of those requested URLs return 404 status code.

Order the list by the number of requests, evaluate the ones with the highest number to find the pages with the highest priority (the more requests, the higher priority), and consider whether to redirect that URL or do any other action.

If you use a CDN or cache server, you need to get that data as well to get the full picture.

Segment your data

Grouping data into segments provides aggregate numbers that give you the big picture. This makes it easier to spot trends you might have missed by looking only at individual URLs. You can locate problematic sections and drill down if needed.

There are various ways to group URLs:

  • Group by content type (single product pages vs. category pages)
  • Group by language (English pages vs. French pages)
  • Group by storefront (Canadian store vs. US store)
  • Group by file format (JS vs. images vs. CSS)

Don’t forget to slice your data by user-agent. Looking at Google Desktop, Google Smartphone, and Bing all together won’t surface any useful insights.

Monitor behavior changes over time

Your site changes over time, which means so will crawlers’ behavior. Googlebot often decreases or increases the crawl rate based on factors such as a page’s speed, internal link structure, and the existence of crawl traps.

It’s a good idea to check in with your log files throughout the year or when executing website changes. I look at logs almost on a weekly basis when releasing significant changes for large websites.

By analyzing server logs twice a year, at the very least, you’ll surface changes in crawler’s behavior.

Watch for spoofing

Spambots and scrapers don’t like being blocked, so they may fake their identity — they leverage Googlebot’s user agent to avoid spam filters.

To verify if a web crawler accessing your server really is Googlebot, you can run a reverse DNS lookup and then a forward DNS lookup. More on this topic can be found in Google Webmaster Help Center.

Merge logs with other data sources

While it’s no necessary to connect to other data sources, doing so will unlock another level of insight and context that regular log analysis might not be able to give you. An ability to easily connect multiple datasets and extract insights from them is the main reason why Power BI is my tool of choice, but you can use any tool that you’re familiar with (e.g. Tableau).

Blend server logs with multiple other sources such as Google Analytics data, keyword ranking, sitemaps, crawl data, and start asking questions like:

  • What pages are not included in the sitemap.xml but are crawled extensively?
  • What pages are included in the Sitemap.xml file but are not crawled?
  • Are revenue-driving pages crawled often?
  • Is the majority of crawled pages indexable?

You may be surprised by the insights you’ll uncover that can help strengthen your SEO strategy. For instance, discovering that almost 70 percent of Googlebot requests are for pages that are not indexable is an insight you can act on.

You can see more examples of blending log files with other data sources in my post about advanced log analysis.

Use logs to debug Google Analytics

Don’t think of server logs as just another SEO tool. Logs are also an invaluable source of information that can help pinpoint technical errors before they become a larger problem.

Last year, Google Analytics reported a drop in organic traffic for our branded search queries. But our keyword tracking tool, STAT Search Analytics, and other tools showed no movement that would have warranted the drop. So, what was going on?

Server logs helped us understand the situation: There was no real drop in traffic. It was our newly deployed WAF (Web Application Firewall) that was overriding the referrer, which caused some organic traffic to be incorrectly classified as direct traffic in Google Analytics.

Using log files in conjunction with keyword tracking in STAT helped us uncover the whole story and diagnose this issue quickly.

Putting it all together

Log analysis is a must-do, especially once you start working with large websites.

My advice is to start with segmenting data and monitoring changes over time. Once you feel ready, explore the possibilities of blending logs with your crawl data or Google Analytics. That’s where great insights are hidden.

Want more?

Ready to learn how to get cracking and tracking some more? Reach out and request a demo get your very own tailored walkthrough of STAT.

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!

How to Optimize Your Conversion Funnel, from ToFu to BoFu

Posted by OliviaRoss

No matter who your customer is or what you’re selling, it’s more likely than not that your customer will have to go through several steps before choosing to buy your product or service. Think about your own shopping habits: you don’t just buy the first thing you see. The first thing you do is note that you have a problem or a need, and then you research a solution online. Once you find that solution, which could be a product or service, you then decide which manufacturer or company is the best fit for your needs based on price, features, quantity — whatever it is that you are looking for.

The sales funnel is a drawn-out process, so it’s important for you to understand your customer’s pain points, needs, and intents as they go from learning about your company to deciding whether or not they want to pay you for your services or products. The goal is for a customer to not only choose you but to keep choosing you over and over again with repeat purchases. By understanding where your customer is in the funnel, you can better move them through that funnel into a reoccurring sale.

What is the conversion funnel?

The “conversion funnel” (also known as the “sales funnel”) is a term that helps you to visualize and understand the flow through which a potential customer lands on your site and then takes a desired action (i.e. converts). This process is often described as a funnel because you’re guiding the customer toward your conversion point. And these prospects come from a gamut of methods such as SEO, content marketing, social media marketing, paid ads, and cold outreach.

Conversion rate optimization can occur at every stage in the funnel to improve the number of people you drive towards the most important action. To do this effectively, you need to think about the user experience at each stage — what they want, and how you can give it to them.

A typical conversion funnel has several stages: awareness, interest, consideration, intent, and finally purchase (buy).

Here’s a quick rundown of what to offer for each step of the funnel:

Creating your funnel

Before you even bother creating different offers for different steps in the funnel, you’ll need to make sure you’re tracking these goals properly. The first step is to set up a funnel visualization in Google Analytics. In building your funnel, focus on these three things:

  • The name of your goal: This goal should have a recognizable name so you know what you’re looking at in your reports. For example, “Document capture e-book A” or “free trial subscription B.”
  • The actual funnel layout: You may add up to 10 pages in Google Analytics for a conversion funnel. This will allow you to find out where prospects are leaving before completing the goal. Without this, you won’t know which areas need the most attention and improvement.
  • The value of the goal: In order to determine your ROI, you’ll need to decide what a complete goal is worth. If 20% of prospects who download a whitepaper end up becoming customers who spend $1000 with you, the download value might be $200 (20% of $1000).

A very important to thing to take note of is that your potential customers will be coming from several different avenues to your site. Assuming you don’t have a very small site with very few visitors, there are several likely paths prospects will take towards conversion.

If you try to push all of your prospects through the same funnel, it may look like your site’s conversion rate is extremely low. However, these customers may be getting to you through a different way such as landing pages.

You must account for all avenues of traffic. Image Source

Awareness stage

It’s no secret that customers need to know you exist before they can even think about considering you. So in this phase, you need to focus on attracting people to your site.

For this first step of the funnel, the goal is to create a strong first impression and to build a relationship with your prospective customers. This content should impress them enough that they fill out a form showing interest by giving you their email. Creating multiple TOFU offers gives you the information (company, name, email address) you need to segment and nurture leads further down the funnel.

Blogging

Let’s say Directive wants to create lead generation content. We’ll have some blog posts around PPC, SEO, and content marketing, and we will make sure to categorize these, either in the URL itself or on specific pages, in order to more easily segment our audiences.

So not only should you be targeting people based on the categories they’re visiting, but if you send people to very specific content upgrades or exit popups based on the content they’re reading, you’re going to increase your conversion rates even more.

Let’s pretend your conversion rate is normally just 3–4%, but a blog post talking about technical SEO saw an 18% conversion rate. This is because you’re sending a very specific audience to that page.

Look at how HubSpot lays out their resources navigation. There’s tons of valuable content to learn from.

HelpScout separates their content into categories, and each post is easily scannable in the 3-column card structure.

Social networking

People use social networks for everything nowadays, from getting advice to looking up reviews and referrals. They like seeing the behind-the-scenes on a business’ Instagram, they field their complaints through a business’ Facebook and Twitter, and they look for tutorials and how-tos on Pinterest and YouTube. Social proof builds trust and helps increase conversions. Therefore, create an active presence on the networks that make sense for your market in order to meet your customers. Social media can also indirectly impact your search engine rankings.

OptinMonster – Image Source

Interest / consideration

This stage of the conversion funnel is where you must start standing out from your competitors. If you offer service A at price B but so does Competitor #3, then how is that going to set you apart? What’s going to make the customer more interested in you over a competitor? The thing that makes you different is what will generate the most interest. This is why your unique value proposition (UVP) is so important.

According to Unbounce, your UVP, also known as a unique selling proposition (USP), is a clear statement that describes the benefit of your offer, how you solve your customer’s needs, and what sets you apart from the competition.

During the interest stage, your website and content are extremely important in creating that closer relationship with your customers. However, people merely visiting your awesome site is not enough. You will want to keep them engaged after they leave. Just like in the awareness phase, we do this by capturing their email. However, we want to push a little further now.

PPC and landing pages

You can easily increase conversions with email opt-ins that only appear to your PPC visitors. Using this page-level targeting can really boost the effectiveness of your PPC campaigns.

Focus on creating attention-grabbing content like headlines, carousel images, and banners all focused around your UVP.

Here at Directive, we’re constantly coming up with strategies to help our clients get the most leverage out of their content. We created a landing page focused around demo requests. This page was not performing nearly as well as we would have hoped, so we decided to change the offer to a demo video.

By switching an offering from a full demo to just a short 5-minute demo video, we saw a tremendous lift in conversion rates. It makes sense when you realize that the people in our target audience were in the awareness stage and were not interested in spending 30 minutes to an hour with a stranger explaining a product that they’re not ready to buy. As you can see, the demo video outperformed the full demo by an increase of 800%.

Now these leads aren’t anywhere close to buying yet, but it’s better to build that interest in a larger pool of people who can potentially turn into sales than to only have two sales qualified leads to start with.

Site optimization

If you notice that you’re getting decent traffic to your website but the prospects are bouncing after a short amount of time, the problem could be that your website doesn’t have the content they’re looking for, or that the site is difficult to navigate. Make sure to focus on making your web pages clean and legible. You only get one shot at a first impression, so your site must be easy to navigate and the content must explain the unique value of your product or service.

Think about creating supporting content, including a mission statement, blog posts, great promotional offerings, a competitive shipping and returns policy — whatever drives the point home that your customers need the services that only you can offer. Your content needs to encourage visitors to want to learn more about you and what you do. If you’re creating blog posts (which you should be), include a call to action for more in-depth content that requires prospects to join your email list to receive it.

The Calls to Action on your pages are extremely important to focus on as well. If the prospects aren’t sure what you’re offering, they’ll be less likely to convert. For this client, we changed the CTA text to “Get an Instant Quote” from “Shop Now” and right off the bat, it made a huge difference. We ended the experiment in about 11 days because it worked so well and the client was so happy.

When comparing the rest of the quarter after the test was complete to the same period before the test began, we saw a 39% increase in request a quote submissions, and a 132% increase in completed checkouts.

Along with concise and clear UVP-related copy throughout your website and blog, continue using white papers, guides, checklists, and templates. These are your lead magnets to gather more customer emails in exchange for your offer.

Gather qualitative data

Use qualitative data tools such as Hotjar to find out where people are clicking, scrolling, or getting stuck on your website. You can build your conversion funnel in Hotjar to see where customers are dropping off. This will tell you which pages you need to optimize.

In this Hotjar funnel, you can see that there’s a major drop off on the demo page. What information isn’t clear on the demo page? Is there friction on this page to keep customers from wanting a demo?

If you’re still not sure what to fix, sometimes it’s best to hear it straight from the horse’s mouth. Set up user polls on your site asking customers what’s keeping them from getting their demo/trial/product/etc.

Live chat and chatbots are another way to get user feedback. Gartner forecasts that by 2020, over 85% of customer interactions will be handled without a human. People want answers to their problems as quickly as possible, so providing that live chat solution is a great way to keep people from bouncing because they can’t find the information they need.

Intent (also known as the evaluation or desire phase)

By now, you and some of your competitors are in the running, but only one of you can win first prize. Your potential customers have now started to narrow down their options and eliminate bad fits. According to HubSpot, companies with refined middle-of-the-funnel engagement and lead management strategy see a 4–10 times higher response rate compared to generic email blasts and outreach. Nurtured leads produce, on average, a 20% lift in sales opportunities. Clearly, this is an extremely important part in the funnel.

Customers in the middle of the sales funnel are looking for content that shows them that you’re the expert in what you do. Live demos, expert guides, webinars, and white papers that explain how you’re better over competitors are very valuable at this stage. Use social proof to your advantage by using testimonials, reviews, and case studies to show how other customers have enjoyed your services or products. Many qualified leads are still not ready to buy. So in order to nurture these leads and turn them into real paying customers, provide interesting emails or an online community such as a Facebook group.

Email

Start educating your potential customers about what it is you do. Build trust through automated emails sent to subscribers with answers to FAQs about your services and links to new content you have created.

In this email, we offer a piece of content relevant to our subscribers’ interests

Create location- and product-specific pages

Often times, your prospective clients are searching for a very specific product, or they need a service that’s local to their area. By creating pages focused around what these users need, you’re likely to get more conversions and qualified leads than a general overview page.

At Directive, we created location pages for a client that targeted the areas they serve. We optimized the pages to reflect bubble keywords that increased their rankings and we now rank for a few different keywords on both the first and second page on Google. Since then, the amount of conversions from these pages have been tremendous.

Click to see a larger image.

Continue using PPC campaigns

Click to see a larger image.

In this example, we brought a top-of-funnel CTA into bottom-of-funnel targeting.

We created ads that linked to a gated whitepaper on the client’s website. As you can see, there are a large number of impressions with 531 clicks.

The theory was that our targeting was enough of a pre-qualification. Instead of getting a custom practice evaluation, the user was offered a map to show them how much money they could be making per patient in their state.

Continue using landing pages

A specific landing page and call to action is more relevant to the visitor’s needs than your homepage and so is more likely to convert.

Following the multi-step model designed to ease visitors into a commitment, here’s a demo example from one of our clients:

Notice the questions being asked in the step-one form:

  1. Average Monthly Revenue
  2. Current E-Commerce Pain Points

These questions allow the user to stay anonymous. They also lead the user to believe that they will get a more custom response to their needs based on the specific information they input.

Next, they’re directed to the second-step form fields:

This step is asking for the personal information. However, notice the change in headline on the form itself. “Last step: We have your demo ready to go. Who can we give this to?” This second-step language is very important as it reminds the visitor as to why we need their information: it’s for their benefit — we want to give the visitor something, not take something from them. Time and again, I see a multi-step page outperform a one-step by 300%.

Take advantage of thank you pages

Even though you’ve already captured a lead/sale/sign-up/conversion, thank you and confirmation pages are a necessary step in the funnel process. Right after people opt in for the offer on your landing page, you’ll want to ask them to immediately take another specific action on the thank you page. For example, if you have a page offering a free e-book, offer a free demo on the thank you page to attempt to push those prospects farther down the funnel. They’ll be much more likely to take an action once you’ve already convinced them to take a smaller action.

When visitors land on the report thank you page, we provide them the download link, but we also provide next steps with an option to get a demo.

It’s important to tag people based on what they’ve downloaded or what posts they’ve read. That way you can create tailored messaging for these prospects when reaching out to them through email.

Action

Assuming you’ve optimized each step of the conversion funnel, you should have some qualified leads becoming paying customers. However, your work here is not done. You will need to continue nurturing those qualified leads. After someone has taken a desired action and converted on your website, you’ll want to get these people back into the funnel in order to coax them into repeat business. Retention is such an important part of growing your customer base, since this will be revenue that you don’t have to pay for — this audience already showed a definite interest in what you’re offering.

If the lead converts into a customer, show them your other products or services and begin the cycle again. For example, let’s say you provide tree-trimming services and your customer just had you come by to trim the oak trees in their large backyard. After the job is done, continue reaching out to this customer with other services such as grass treatment, stump removals, or whatever else could be useful to them. You can do this by inviting them to an email newsletter or your social media channels. Send coupons and promotions via email. If you have an online store, include loyalty materials in their shipped order so they understand how much you value them as a customer.

Along with nurturing this repeat business, focus on optimizing your product pages by removing friction and doing all you can to encourage shoppers to checkout. Examine and improve your checkout flow by answering common questions along the way.

Key takeaways

Optimizing your funnel is a process that takes time, so don’t be afraid to experiment. It may take a few different offers before you find one that sticks and garners the most conversions. So create as many TOFU offers as you can think of to cater to the many different personas that make up your customer base. From white books and e-books to free trials, your TOFU content is the first step to building that relationship with your customers.

From there, continue creating great content and nurturing those mid-funnel leads. If your content is relevant and your website is optimized, you’ll notice that you’ll be getting many more leads than you did before optimization. The more leads you gather and keep interested, the more likely you are to get repeat sales!

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!