HSTS check without redirects
Inspect the header at the known canonical address itself.
Methodology: This check follows wSEO methodology 1.1. How the assessment works
Independent HSTS check
Find one valid header on the exact HTTPS address
Test the established canonical address without moving to another domain or page. If it redirects, repair the primary hostname first.

Strict-Transport-Security header with a positive max-age.Browser check
- Open the exact canonical HTTPS address and Developer Tools.
- Reload the page on the Network tab.
- Select the first request for the main HTML document.
- Find
Strict-Transport-Securityunder Response Headers. - Confirm there is one header and
max-ageis positive.
Assessing the result
| Result | Meaning | Action |
|---|---|---|
| No header | HSTS is inactive | Configure |
max-age=0 | The policy is being disabled | Repair |
Positive max-age | HSTS is active | Expected |
| Multiple headers | Configuration sources conflict | Keep one |
Terminal check
curl -sS -D - -o /dev/null \
--max-redirs 0 https://example.com/The command deliberately does not follow redirects.
Preload is checked separately
Use the official HSTS Preload website. A preload directive does not itself prove list inclusion.
Save the exact URL, Response Headers screenshot and header value as evidence.