Webサイトレスポンスヘッダーを取得

サーバー側で URL の HTTP レスポンスヘッダーを取得(HEAD、405/501 の場合は GET にフォールバック)。手順:HEAD を送信し、リダイレクトを追跡、ヘッダーを収集、プライベートホストをブロック。例:CORS、Cache-Control、HSTS を確認してリダイレクトや CDN 設定をデバッグ。

結果
ステータス:-
最終URL:-
ヘッダー:
-

注意

  • 一部のサイトではHEADがサポートされていないため、GETにフォールバックします。
  • セキュリティ上、ローカルホスト/プライベートネットワークへのリクエストはブロックされています。

何ですか:WebサイトのHTTPレスポンスヘッダーを取得・検査します。CORS、キャッシュ、リダイレクト、セキュリティやCDNヘッダーのデバッグに役立ちます。利用シーン:開発者によるデバッグ、SEOチェック、サーバー構成確認。

Frequently asked questions

What do HTTP response headers show?

They show metadata from the server response such as content type, caching rules, redirects, and security policies like HSTS or CORS.

Does this tool download the full page body?

It prefers HEAD and falls back to GET when needed. The goal is inspecting headers, not scraping page content.

Why are localhost or private IPs blocked?

Requests to private networks are blocked for safety so the worker cannot be used to probe internal hosts.