]> granicus.if.org Git - apache/commitdiff
Fix a broken link.
authorChristophe Jaillet <jailletc36@apache.org>
Sat, 17 Aug 2019 16:53:04 +0000 (16:53 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sat, 17 Aug 2019 16:53:04 +0000 (16:53 +0000)
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

docs/manual/mod/mod_deflate.xml

index 5fe6e2b1e60c4153e0cbcc96e38ad3efdcb42055..2069a38825db907ed68161208bd5100a6c22eef6 100644 (file)
@@ -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.