GlossarySEO
Does HTTPS matter for SEO?
Also called: SSL, TLS, SSL certificate, secure site
Definition
HTTPS is HTTP over an encrypted TLS connection, shown by https:// and a padlock in browsers. Google has used it as a lightweight ranking signal since 2014, and browsers warn users about sites without it.
HTTPS, explained
HTTPS encrypts traffic between the browser and the server, so people on the same network can't read or alter it. In 2014 Google announced HTTPS as a ranking signal, describing it as very lightweight at the time and affecting fewer than 1% of global queries. Today it's part of Google's page experience guidance, and modern browsers flag plain HTTP pages as not secure, which hurts trust and signups far more than any ranking effect.
For a new site, HTTPS is a default rather than a project. Most hosts and CDNs issue free certificates automatically. The SEO work is in making HTTPS the only version: permanently redirect every http:// URL to its https:// equivalent in one hop, use https:// in canonicals, internal links, sitemaps, hreflang and structured data, and avoid loading any resources over HTTP, which causes mixed content warnings or blocked scripts.
Google's 2014 announcement also recommended not blocking HTTPS pages with robots.txt, allowing them to be indexed, and using HSTS. HSTS tells browsers to always use HTTPS for your domain, removing the insecure first request on later visits.
When moving an existing site from HTTP to HTTPS, treat it like a site migration: map URLs, use permanent redirects, update internal links and submit the new sitemap. A Domain property in Search Console covers both protocols, which makes the move easier to monitor.
Why it matters for founders
There's no reason for a startup site to be on HTTP in 2026. The work is making sure every variant redirects cleanly and nothing still loads over HTTP.
Example
Your site has a certificate, but http://example.com/blog still returns 200. You add a permanent redirect for all HTTP requests and switch two hardcoded http:// image URLs to https://.
Common mistakes
- Both HTTP and HTTPS versions returning
200. - Canonicals or sitemaps still using
http://. - Hardcoded HTTP resources causing mixed content.
- Redirecting HTTP through several hops.
Sources
- Google Search Central Blog: HTTPS as a ranking signal (2014)
- Google Search Central: Understanding page experience
Checked
Related terms
- HSTSHSTS (HTTP Strict Transport Security) is a response header telling browsers to only ever connect to your domain over HTTPS, for a set period. Browsers then upgrade any
http://link before sending it. - Mixed contentMixed content is when a page loaded over HTTPS includes resources, like images, scripts or iframes, loaded over plain HTTP. Browsers upgrade or block those requests, which can break the page.
- www vs non-wwwwww vs non-www is the choice between serving your site at
www.example.comorexample.com. Either works for SEO. What matters is picking one and permanently redirecting the other to it. - Page experiencePage experience is Google's term for how using a page feels beyond its content: loading speed, responsiveness, visual stability, HTTPS, mobile usability, ads and interstitials. Google says there is no single page experience signal.