From: Christophe Jaillet Date: Sat, 17 Aug 2019 16:53:04 +0000 (+0000) Subject: Fix a broken link. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d4360e105fc89be5be4af036e77bac7b87a5a33;p=apache Fix a broken link. Add a missing Synch with 2.4.x git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1865363 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_deflate.xml b/docs/manual/mod/mod_deflate.xml index 5fe6e2b1e6..2069a38825 100644 --- a/docs/manual/mod/mod_deflate.xml +++ b/docs/manual/mod/mod_deflate.xml @@ -40,7 +40,7 @@ client
Supported Encodings

The gzip encoding is the only one supported to ensure complete compatibility with old browser implementations. The deflate encoding is not supported, - please check the zlib's documentation + please check the zlib's documentation for a complete explanation.

@@ -191,7 +191,7 @@ content

Since mod_deflate re-compresses content each time a request is made, some performance benefit can be derived by - pre-compressing the content and telling mod_deflate to serve them + pre-compressing the content and telling mod_deflate to serve them without re-compressing them. This may be accomplished using a configuration like the following:

@@ -200,7 +200,7 @@ content # Serve gzip compressed CSS and JS files if they exist # and the client accepts gzip. RewriteCond "%{HTTP:Accept-encoding}" "gzip" - RewriteCond "%{REQUEST_FILENAME}\.gz" "-s" + RewriteCond "%{REQUEST_FILENAME}\.gz" -s RewriteRule "^(.*)\.(css|js)" "$1\.$2\.gz" [QSA] # Serve correct content types, and prevent mod_deflate double gzip.