free seo tools
SEO.to / 08

HTTP header checker

Put in a URL and the tool reads the response headers, then tells you which security, caching and compression headers are set and which are missing.

Fetched live, exactly as a crawler receives it.

Which headers matter

Security headers

  • Strict-Transport-Security: locks the origin to HTTPS. Start with a short max-age, grow it.
  • Content-Security-Policy: the strongest XSS control. Hard to retrofit, worth it.
  • X-Content-Type-Options: nosniff: two words, closes MIME sniffing.
  • Referrer-Policy: strict-origin-when-cross-origin is the sane default.

Performance headers

  • Cache-Control: immutable + a year for fingerprinted assets; short or no-store for HTML.
  • Content-Encoding: brotli beats gzip by roughly 15 to 20 percent on text.
  • Vary: wrong values fragment caches; missing ones poison them.

Security headers are not a ranking factor on their own. Speed and HTTPS are, and both are controlled by headers on this list.

Next