Wolfgang Digital Blog Banner Images

By Luke Fitzgerald on 24 Aug 2017

https protects your site

It’s OK, you’re amongst friends here. You can admit that you’ve been putting off migrating your site to HTTPS. Can’t say we blame you as it’s a bit of a task. We know because we’ve done it countless times before and we’re battening down the hatches to do it a lot more in the near future.

Google has blanket-bombed the non-HTTPS offenders of the world with a warning. Here’s what you need to know.

Google to Expand Reach of 'NOT SECURE' Warnings

We’ve gone through the difference between HTTP and HTTPS before so we won’t repeat ourselves.

Another thing we’ve been harping on about in the past is Google Search Console. You should definitely have this set up by now as it gives you a wealth of information on how your site is performing in Google SERPs.

In 2016, Search Console also brought the less welcome notification that Google would soon be publically shaming sites that collect payment method data and passwords from users on non-HTTPS connections. Little under a year later and Google is plotting to release their second wave of warnings.

The new warning is part of a long term plan to mark all pages served over HTTP as ‘NOT SECURE’ to users browsing the web through Google’s Chrome Chrome browser when it updates to Chrome 62. For some added context, the vast majority of of web browsing is done through Chrome as it’s the browser choice for 45% of internet users.

Here's their latest warning email:

google's not secure warning to webmasters

While Google’s initial focus was shaming websites for collecting sensitive payment and password data through non-HTTPS connections, they’ve now expanded their view. From October 2017, sites collecting personal data, which will now include email addresses on non-HTTPS connections will be branded with a big ol’ ‘NOT SECURE’ warning as soon as users interact with a form.

Google will show the ‘NOT SECURE’ warning on pages which contain HTML form elements including < input type="text" >. This code often appears site search functionality which means nearly every page on a site that offers site search will display a ‘NOT SECURE’ warning from October.

We ran a straw poll across a wide variety of Irish e-commerce sites checking both site search availability and whether they served content through HTTP or HTTPS. We found that 72% of e-commerce sites in Ireland offer site search and at least 50% of all e-commerce sites we checked will display Google’s ‘NOT SECURE’ warning to their visitors from October.

So what? That won’t impact my organic traffic, will it?

Why This 'NOT SECURE' Message Matters?

Google’s warning will only appear in Chrome and will only appear after a page has loaded. Because the warning is not SERP based, your site is unlikely to experience a drop in organic traffic because of the warning. What you are much more likely to see are increased bounce rates and exit rates along with decreased conversion rates where your conversions are measuring e-commerce and form based goal submissions.

If you were just about to hand over your personal information in a traditional bricks ’n’ mortar store, you’d think twice if someone started yelling “NOT SECURE” you might think twice.

Okay, fair enough. That’s a bit unrealistic but at the same time, online conversions can be delicate and the smallest barrier can deter people from converting. We recently looked at the importance of building an owned audience. Any friction in that process at all will greatly reduce the number of people that hand over their personal details, including their email address, to you in future.

If you were to jump into your Google Analytics right now and see that you have a high share of traffic from mobile, specifically Android, migrating to HTTPS should jump to the top of your priorities as this i a prime device to see the warning.

Avoiding the Not Secure Warning in Chrome

If you haven’t migrated to HTTPS already, you really are putting off the inevitable. In Google’s own words, the “long term plan to mark all pages served over HTTP as “‘not secure’”. We’re moving towards an online world where all pages will be secured so stop putting it off.

Migrating to HTTPS is a daunting task for most online businesses who are anxious that it may lead to losses of revenue and traffic. At Wolfgang Essentials, we showed that these are very real risks that we deal with on a regular basis. When you’re planning your migration to HTTPS be sure to include experienced SEOs in the process from the very start.

brick cough look over here gif

Once you’ve made the leap to HTTPS, it’s important to ensure that you’ve verified the secure version of your site within Google Search Console. In fact, you should actually have all four possible domain versions of your site verified. They are:

  • the HTTP non-www version
  • the HTTP www version
  • the HTTPS non-www version and of course
  • the HTTPS www version (our preferred canonical iteration here at Wolfgang)

Here’s what they look like:

four domain versions in search console

Once HTTPS is in place, you should also log into Google Analytics and ensure that the default tracking domain is set to the HTTPS version. Failing to do this means you risk losing out on valid, secure tracking data:

change google analytics from http to https

Pro Tip: Install HSTS Headers

If you wanna go full-nerd and aim for the strongest level of SSL compliance, we strongly recommend implementing HSTS headers on your newly-secured HTTPS domain.

What is HSTS?  

HSTS carries out three primary functions:

  1. Automatically redirects HTTP requests to HTTPS for the target domain
  2. Does not allow a user to override the invalid certificate message
  3. Enabled through the use of a special response header

HSTS is basically like a 301 redirect, but at the browser level, rather than the web page level. It’s superior to a 301 redirect as it can be implemented to always only force use of HTTPS, whereas 301 redirects are deemed unsecure when the pre-redirect HTTP elements first seen by a browser or web crawler.

Implementing HSTS

Here are the four steps you need to follow when implementing HSTS:

  1. Enable HSTS on your server
  2. Ensure HSTS is preloaded
  3. Decide what settings are appropriate for your site
  4. Add the ‘Strict-Transport-Security’ response header

Choosing your settings

There are three options that we will look at now from least secure to most secure. The header you will set to enable HSTS has some variables that are very important.

  1. Simplest setting / least secure
  2. Fairly secure - ensures subdomains will be HTTPS
  3. Most secure - Recommended setting

 

Simplest setting / least secure

Strict-Transport-Security: max-age=10886400

This example is the simplest version of this header.

  • It’s the Simplest setting and the least secure
  • Does not affect subdomains
  • Not able to be included in preload lists

 

Fairly secure - ensures subdomains will be HTTPS

Strict-Transport-Security: max-age=10886400; includeSubDomains

This is a more secure version of this header.

  • Moderate setting and more secure than option one
  • Subdomains will be HSTS too
  • Not able to be included in preload lists

 

Most secure - Recommended setting

Strict-Transport-Security: max-age=10886400; includeSubDomains; preload

This is the most secure version of this header and the one we recommend.

  • Most secure
  • Subdomains will be HSTS too
  • Can be included in preload lists

This header can be included in the preloading lists maintained by Google.

Variables

  • Strict-Transport-Security: - the header declaration
  • max-age= - amount of time in seconds the header should stay alive
  • includeSubDomains - this states to require HSTS on all subdomains
  • preload - this gives your authorization to be included in preload lists

Once you know the settings you require you can add the header.

Add the Strict-Transport-Security header in the same manner as adding any header.

Enable HSTS using .htaccess

If you are using the .htaccess file for your configurations, HSTS can be added by using the following code:

<IfModule mod_headers.c>

Header set Strict-Transport-Security "max-age=10886400; includeSubDomains; preload"

</IfModule>

Important: The above code is the most secure and has all required elements needed to be included in the HSTS preload list. This recommended setting will be used in all further examples.

If you’re unsure what server you’re using, you probably shouldn’t be doing this work but you can, of course, use the excellent BuiltWith Browser Extension to identify your server and apply the applicable approach for your site infrastructure.

Enable HSTS in Apache

Header always set Strict-Transport-Security "max-

age=10886400; includeSubdomains; preload"

Enable HSTS in NGINX

add_header Strict-Transport-Security "max-age=10886400;

includeSubdomains; preload"

After HSTS is enabled on your site, you will need to get on the preload list maintained by Chrome (this list is also used by other browsers).

How to get listed on the HSTS preload list

  1. Make sure you meet the requirements
  2. Enter your domain into the preload list - https://hstspreload.appspot.com/
  3. Wait

Submission Requirements

If a site sends the preload directive in an HSTS header, it is considered be requesting inclusion in the preload list and may be submitted via the form on this site.

In order to be accepted to the HSTS preload list through this form, your site must satisfy the following set of requirements:

  1. Have a valid certificate.
  2. Redirect from HTTP to HTTPS on the same host.
  3. Serve all subdomains over HTTPS.
    1. In particular, you must support HTTPS for the www subdomain if a DNS record for that subdomain exists.
  4. Serve an HSTS header on the base domain for HTTPS requests:
    1. The max-age must be at least eighteen weeks (10886400 seconds).
    2. The includeSubDomains directive must be specified.
    3. The preload directive must be specified.
    4. If you are serving an additional redirect from your HTTPS site, that redirect must still have the HSTS header (rather than the page it redirects to).

 

Submit domain to preload list

Once you do you will receive different responses depending on your scenario. If you do not meet the requirements, it will tell you. If you do meet them, it will tell you that too.

Wait

Getting on the list is a long process, expect weeks to get accepted, and then months to get live to the latest versions of Chrome / Firefox.

After it accepts your domain name, you can check back to see the status of your domain and test your website SSL certificate.

The Wolfgang Essential Takeaway

Google is on a mission to secure the web. Their long-term strategy is to achieve this is shaming sites into adopting HTTPS. The migration process might be daunting but it’s inevitable. We’ve shown you how it’s done but reduce the stress in your life by leveraging experienced SEOs throughout the process who’ve migrated sites to HTTPS in the past. G’wan, give us a shout.

Share This Article
SUBSCRIBE TO OUR NEWSLETTER
Your One-Stop-Shop for the Essential Digital Marketing News

Contact Wolfgang Digital

Address

Palmerston House, Denzille Lane Dublin 2

Bing Partner growth Partner
Wolfgang Digital

Want To Talk Digital Marketing?

Let's Get Started!