diff options
author | Christophe Jaillet <jailletc36@apache.org> | 2019-08-17 18:53:04 +0200 |
---|---|---|
committer | Christophe Jaillet <jailletc36@apache.org> | 2019-08-17 18:53:04 +0200 |
commit | 7d4360e105fc89be5be4af036e77bac7b87a5a33 (patch) | |
tree | 38d06d2c8c3d22474a47f0c9f2915cf2c0b81ed8 /docs | |
parent | fr doc rebuild. (diff) | |
download | apache2-7d4360e105fc89be5be4af036e77bac7b87a5a33.tar.xz apache2-7d4360e105fc89be5be4af036e77bac7b87a5a33.zip |
Fix a broken link.
Add a missing <module></module>
Synch with 2.4.x
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1865363 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/mod/mod_deflate.xml | 6 |
1 files changed, 3 insertions, 3 deletions
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</description> <section id="supportedencodings"><title>Supported Encodings</title> <p>The <code>gzip</code> encoding is the only one supported to ensure complete compatibility with old browser implementations. The <code>deflate</code> encoding is not supported, - please check the <a href="http://www.gzip.org/zlib/zlib_faq.html#faq38">zlib's documentation</a> + please check the <a href="https://zlib.net/zlib_faq.html#faq39">zlib's documentation</a> for a complete explanation. </p> </section> @@ -191,7 +191,7 @@ content</title> <p>Since <module>mod_deflate</module> 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 <module>mod_deflate</module> to serve them without re-compressing them. This may be accomplished using a configuration like the following:</p> @@ -200,7 +200,7 @@ content</title> # 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. |