What the issue means
A missing Strict-Transport-Security header means browsers are not instructed to always use HTTPS for future visits.
Security fix guide
A missing Strict-Transport-Security header means browsers are not instructed to always use HTTPS for future visits.
Run Full Website Security ScanA missing Strict-Transport-Security header means browsers are not instructed to always use HTTPS for future visits.
HSTS helps prevent protocol downgrade and accidental HTTP access after the first secure visit.
Look for Strict-Transport-Security in HTTPS responses.
Serve HTTPS everywhere, then add HSTS with a safe max-age. Add includeSubDomains and preload only when ready.
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains"headers: async () => [{ source: "/(.*)", headers: [{ key: "Strict-Transport-Security", value: "max-age=31536000; includeSubDomains" }] }]Enable HSTS from SSL/TLS Edge Certificates only after confirming HTTPS works on all subdomains.