RevealTheme logo

Gzip/Brotli圧縮テスト

URLが圧縮されたレスポンス(gzipまたはbrotli)を返しているかどうかを確認します。

このツールの使い方

  1. 1

    Paste the full URL you want to check, including the https:// scheme.

  2. 2

    Submit the form to have our server request that URL.

  3. 3

    Read the result card: it shows the Content-Encoding value (such as gzip or br) and whether compression was detected.

  4. 4

    Adjust your server configuration if the card reports no compression, then re-run the check.

Gzip/Brotli圧縮テストとは何ですか?

圧縮は、テキスト系コンテンツ(HTML、CSS、JS、JSON)の転送サイズを60%から80%削減します。Brotli(2015年に登場)はgzipを上回る性能を持ち、最新のサーバーは両方に対応していて、Accept-Encodingヘッダーに応じて最適なものを選びます。このツールは、あなたのサーバーが正しく設定されているかどうかを確認します。

よくある活用例

  • Confirm that a newly deployed Nginx or Apache config is actually emitting gzip or brotli on your homepage.

  • Verify a CDN such as Cloudflare or Fastly is compressing HTML responses at the edge.

  • Spot-check an API endpoint that returns large JSON to see whether it is being compressed in transit.

  • Diagnose a slow page by ruling compression in or out before digging into other performance causes.

  • Check whether a specific path (not just the root) is served compressed when rules differ per route.

  • Demonstrate to a client or teammate, with a shareable result, that their pages are or are not compressed.

よくある質問

なぜ私のサイトは圧縮されていないのですか?
たいていはサーバーの設定の問題です。Apacheにはmod_deflateが必要で、Nginxにはgzip_onが必要です。LiteSpeedはデフォルトで有効になっています。
圧縮は画像にも効果がありますか?
わずかです。画像(JPEG/WebP)はすでに圧縮されています。圧縮はおもにテキストベースのコンテンツに効果があります。

関連ツール