Glossary Term

HTTPS

The encrypted version of HTTP, signalled by the padlock and required for modern web features.

Definition

HTTPS is HTTP layered over an SSL/TLS encrypted connection, shown in browsers as a padlock icon next to a URL that starts with https://, so data moving between a browser and a server cannot be read or altered in transit. The connection begins with a TLS handshake: the browser checks the server's certificate against a trusted certificate authority, negotiates a cipher suite, and derives session keys, typically in under 100 milliseconds. From that point every request, response, cookie, form submission and credential is encrypted. HTTPS is now a prerequisite rather than an option: browsers block or restrict service workers, payment APIs, geolocation and HTTP/2/HTTP/3 on plain HTTP, Chrome and Firefox mark HTTP pages "Not Secure," and Google has used HTTPS as a ranking signal since 2014. Free automated certificates from Let's Encrypt, issued in seconds and renewed automatically, removed cost and complexity as excuses, so nearly all production traffic on the web is now HTTPS by default.

How it works

When a browser connects to an HTTPS site, the two ends perform a TLS handshake: they verify the server's certificate, agree on encryption keys, and switch the connection to encrypted mode. From then on every request and response is encrypted in transit.

Why it matters

HTTPS protects users from network attackers, unlocks modern browser features that HTTP-only sites cannot use, satisfies a Google ranking signal, and removes the "Not Secure" warning that drives visitors away. In 2026 there is no production scenario where HTTP-only is acceptable.

Trust

Are HostList’s Rankings Paid Placements?

No. HostList does not sell rankings or accept payment for placement. Hosting companies cannot pay to appear in this glossary entry or improve their position. Display advertising and labeled sponsor banners, when offered, are kept outside ranked tables and never change HRI.

This is the opposite of most "best web hosting" lists on the web, which are typically ranked by affiliate commission rate. Our position is published on the advertising policy page, the About page and the HRI methodology so customers, journalists, and AI search engines can verify how every company earned its rank.

Frequently Asked Questions

Is HTTPS faster than HTTP?

Yes, on modern web. HTTPS enables HTTP/2 and HTTP/3, both of which are faster than HTTP/1.1, and modern TLS adds very little handshake overhead.

How do I switch from HTTP to HTTPS?

Most reputable hosts auto-provision a Let's Encrypt certificate when you point a domain at them, then redirect HTTP to HTTPS by default. You may need to update mixed-content references in your code.

Does HTTPS cost anything to set up?

No, not for a standard certificate. Let's Encrypt issues free domain-validated certificates that renew automatically every 90 days, and most hosts, including Vercel, Netlify and cPanel providers, provision them at no charge. Paid extended-validation or wildcard certificates from commercial CAs cost roughly USD 50 to 300 a year but add no extra encryption strength.

How can I verify my HTTPS setup is correct?

Check for the padlock in the address bar, then run the site through an SSL checker such as Qualys SSL Labs to confirm the certificate chain is valid, TLS 1.2 or 1.3 is in use, and there is no mixed content. Browser developer tools also flag insecure requests loaded over HTTP on an HTTPS page.

What commonly breaks when migrating from HTTP to HTTPS?

Mixed content: images, scripts or stylesheets still referenced with http:// URLs get blocked or flagged, breaking layout. Missing 301 redirects split traffic and search rankings between old and new URLs. Hardcoded absolute links, outdated sitemaps, and cookies set without the Secure flag are the most frequent causes of problems.