b/cited
← Glossary
[ Term ]

HSTS (HTTP Strict Transport Security)

An HTTPS-only commitment baked into a browser's memory. Once a browser sees the HSTS header on your domain, it refuses to load that domain over HTTP for the declared duration — even if a user types `http://`.

Also known as:HTTP Strict Transport SecurityStrict-Transport-Security

HSTS is a security policy declared via the Strict-Transport-Security response header that tells a browser "always use HTTPS for this domain." The browser remembers the policy for the declared max-age and refuses HTTP connections to the domain during that window.

A typical HSTS header:

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

The three directives:

Without HSTS, every first visit to a domain has a brief HTTP window vulnerable to downgrade attacks. With HSTS preload, that window closes entirely — the browser never even tries HTTP.

Why it matters for AEO

Mostly indirect: HSTS is part of the broader trust signal that contributes to EEAT scoring. Sites that bother to harden their security posture (proper HTTPS, HSTS, CSP) tend to also be the ones producing trustworthy content. Google's quality raters notice; AI engines' source-selection signals notice.

Direct impact: AI engines occasionally crawl HTTP variants of pages and get redirects or warnings. Clean HSTS makes everything resolve consistently over HTTPS.

What b/cited does about it

The audit treats HSTS as a small-but-cheap grade lever — one header, no functional cost, modest trust uplift.

[ Related ]
HSTS — Glossary — b/cited