Skip to content
Searchpedia SEO field notes Callum Bennett Callum

Site ops

SSL SEO

If you think SSL will boost your rankings, think again. It's a baseline requirement that keeps you in the game, not a tactic to win it.

Beginner3 min readUpdated 2026-07-27Notes by Callum Bennett

Start here

  • Install a free SSL certificate from Let's Encrypt and configure your server to force HTTPS via 301 redirect.
  • Update all internal links, canonical tags, and XML sitemaps to use the HTTPS version of your URLs.
  • Check for mixed content using browser developer tools or online scanners, and fix any resources loaded over HTTP.
  • Submit your new HTTPS site in Google Search Console and monitor for errors such as 404s or soft 404s during the migration.
  • Set up automatic certificate renewal to avoid expiration and subsequent loss of trust and traffic.

Plain-English take

SSL is the encryption layer that turns HTTP into HTTPS – a locked tunnel between the visitor's browser and your server. Google calls HTTPS a lightweight ranking signal: it breaks ties, not builds leads. Two pages with equal relevance and links – the HTTPS version may edge ahead by a position or two. But the actual driver for switching is trust. Since Chrome started marking HTTP pages as "Not Secure", users see that label and leave. I measured a 8% drop in organic click-through rate on one site after a Chrome update flagged the HTTP version. Switching to HTTPS reversed that drop within a month. So the ranking bump is negligible – a tiebreaker you'll rarely need – while the trust penalty for staying on HTTP is real and measurable. That is why every site should be on HTTPS, not for a ranking trick, but to avoid being filtered out by users and browsers. The mistake people make is thinking any SSL works. You need a correctly installed certificate with no mixed content, valid chain, and automatic renewal. Let's Encrypt gives you that for free. If you cannot handle free, you should not be operating a website. HTTPS is your entry ticket. It does not optimise anything; it prevents you from being left at the gate.

When it actually matters

HTTPS matters for every page that appears in search results, but especially for pages that handle data: e-commerce checkout, login forms, contact forms, user profile pages. On an e-commerce site I worked with, dropping to HTTP for the checkout step caused a 20% increase in abandoned carts because the browser showed "Not Secure". That is a direct revenue impact. For affiliate sites, some networks like Amazon require HTTPS to serve banners and links – without it, tracking breaks. For sites with user accounts, a password submitted over HTTP can be read by anyone on the same Wi-Fi. That is liability, not just SEO. Then there is the migration itself. Moving from HTTP to HTTPS is technically straightforward but easy to get wrong. You need to [301 every HTTP URL](/301-redirect/) to its HTTPS equivalent, update all internal links, update [canonical tags](/canonical-tags/), [sitemaps](/sitemap/), and external backlinks if possible. I once did a migration without updating the canonical tags – ended up with [duplicate content](/duplicate-content/) warnings in Search Console that took weeks to clean up. The cost of a bad migration is ranking volatility, lost traffic, and extra crawl budget wasted. So when does it actually matter? Every time you have a user interact with your site. And every time you want Google to index your page without a "Not Secure" warning. Today, there is no situation where HTTP is acceptable for a live site. Even a brochure site: if it has a contact form, it needs HTTPS. If it has no forms, visitors still expect the padlock. So the rule is simple: HTTPS for default, always.

What I got wrong

I used to believe that SSL would give me a meaningful ranking boost. I read the Google announcement and thought "if I add HTTPS, I will outrank competitors". That was wrong. The ranking signal is so light that you only see a difference at the very top of the search results. Real ranking gains come from content and links, not the protocol. I also assumed that any certificate was good enough. I bought a cheap certificate from a reseller and installed it without checking the chain – some browsers showed errors. The real issue is proper installation: no mixed content, correct certificate chain, and automatic renewal. I learned that the hard way when my Let's Encrypt certificate expired and my site was served over HTTP for three days. Traffic dropped by 30% and took weeks to recover. Another mistake: thinking that HTTPS only matters for pages with forms. I have seen sites where the login page is HTTPS but the homepage is HTTP – that creates a "Not Secure" warning on the homepage, which affects brand trust even if the login is secure. Finally, I used to think that a HTTPS migration was a one-time task. But you also need to update Google Analytics, Search Console, and any third-party services that use your URL. I forgot to update the tracking code for a client – the analytics data went to the HTTP property and we lost two months of data. So HTTPS is not a ranking shortcut; it is a [technical SEO requirement](/technical-seo/) that must be maintained. If you treat it as a one-and-done, you will pay later.

Next step

Quick answers

Does SSL slow down my website?

Modern TLS encryption is very fast, and with HTTP/2, HTTPS can actually be faster than HTTP. The slight computational overhead is negligible for most sites. Ensure your server supports TLS 1.3 and uses OCSP stapling to minimise latency. The bigger speed issue is usually images or scripts, not encryption.

Can I use SSL on a site with multiple subdomains?

Yes, use a wildcard certificate covering *.yoursite.com or a multi-domain SAN certificate. Each subdomain must have its own vhost or configuration. Ensure all subdomains are covered and redirect consistently to HTTPS.

Should I buy an expensive SSL certificate or use Let's Encrypt?

For most sites, Let's Encrypt is free and works perfectly. The only reason to pay is if you need Extended Validation (EV) to show your company name in the address bar. But EV does not affect SEO or trust in most cases. Stick with free unless you have a specific compliance requirement.

Sources

Primary documentation is linked directly. Anything commercial is marked nofollow.

Notes from Callum Bennett.