]> granicus.if.org Git - apache/commitdiff
purge some useless uses of '.*'
authorStefan Fritsch <sf@apache.org>
Mon, 6 Jun 2011 22:09:22 +0000 (22:09 +0000)
committerStefan Fritsch <sf@apache.org>
Mon, 6 Jun 2011 22:09:22 +0000 (22:09 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1132802 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_setenvif.xml
docs/manual/rewrite/access.xml
docs/manual/rewrite/intro.xml
docs/manual/rewrite/rewritemap.xml
docs/manual/ssl/ssl_faq.xml
docs/manual/ssl/ssl_howto.xml
docs/manual/vhosts/examples.xml

index adeb7173b6a4ebed1f099b76526bcb2267104cf2..33a0fd4da6c894cf8cf599ac573dd85e8751bf43 100644 (file)
@@ -231,7 +231,7 @@ of</p>
         :<br />
    SetEnvIf OID("2.16.840.1.113730.1.13") "(.*)" NetscapeComment=$1<br />
         :<br />
-   SetEnvIf ^TS*  ^[a-z].*  HAVE_TS<br />
+   SetEnvIf ^TS  ^[a-z]  HAVE_TS<br />
 </example>
 
     <p>The first three will set the environment variable
index c6fe5aa3a92c9c51c13b3c748fc35938afa03c08..fa4a21b88e8240161bfca8c631f1745428b26210 100644 (file)
@@ -282,7 +282,7 @@ RewriteRule ^ %{HTTP_REFERER} [R,L]<br />
 <br />
 RewriteCond %{HTTP_REFERER} !=""<br />
 RewriteCond ${deflector:%{HTTP_REFERER}|NOT-FOUND} !=NOT-FOUND<br />
-RewriteRule ^.* ${deflector:%{HTTP_REFERER}} [R,L]
+RewriteRule ^ ${deflector:%{HTTP_REFERER}} [R,L]
 </example>
 
       <p>The map file lists redirection targets for each referer, or, if
index b962fd79d5a6eac6c73b9a9190795eb76ecda8ab..9f1c17ee3eb36e84c4b122760ed1d2212ce23ed3 100644 (file)
@@ -186,7 +186,7 @@ the beginning of a query string).</p>
 <dt>A full filesystem path to a resource</dt>
 <dd>
 <example>
-RewriteRule ^/games.* /usr/local/games/web
+RewriteRule ^/games /usr/local/games/web
 </example>
 <p>This maps a request to an arbitrary location on your filesystem, much
 like the <directive module="mod_alias">Alias</directive> directive.</p>
@@ -282,7 +282,7 @@ the word "go", you could use:</p>
 <example>
 RewriteCond %{QUERY_STRING} hack<br />
 RewriteCond %{HTTP_COOKIE} !go<br />
-RewriteRule .* - [F]
+RewriteRule . - [F]
 </example>
 <p>Notice that the exclamation mark specifies a negative match, so the rule is only applied if the cookie does not contain "go".</p>
 
index 35899514df95fd8550bd28ab578f9bc1586db65c..d5059521eb65c8b1114004991d21d28de0223aa8 100644 (file)
@@ -324,7 +324,7 @@ by many requests.
 
     <example><title>Redirect a URI to an all-lowercase version of itself</title>
     RewriteMap lc int:tolower<br />
-    RewriteRule (.*[A-Z]+.*) ${lc:$1} [R]
+    RewriteRule (.*?[A-Z]+.*) ${lc:$1} [R]
     </example>
 
     <note>
index a94da977fb0b3e4fd23fe06a2488288360f4157b..99530545933d72f9420810404cd79e36b85ee77e 100644 (file)
@@ -676,7 +676,8 @@ Does this mean the username/password is being sent unencrypted?</title>
 </section>
 
 <section id="msie"><title>Why do I get I/O errors when connecting via 
-HTTPS to an Apache+mod_ssl server with Microsoft Internet Explorer (MSIE)?</title>
+HTTPS to an Apache+mod_ssl server with older versions of Microsoft Internet
+Explorer (MSIE)?</title>
 <p>The first reason is that the SSL implementation in some MSIE versions has
     some subtle bugs related to the HTTP keep-alive facility and the SSL close
     notify alerts on socket connection close. Additionally the interaction
@@ -686,7 +687,7 @@ HTTPS to an Apache+mod_ssl server with Microsoft Internet Explorer (MSIE)?</titl
     This can be done by using the following directive in your SSL-aware 
     virtual host section:</p>
     <example>
-    SetEnvIf User-Agent ".*MSIE.*" \<br />
+    SetEnvIf User-Agent "MSIE [2-5]" \<br />
              nokeepalive ssl-unclean-shutdown \<br />
              downgrade-1.0 force-response-1.0
     </example>
index 768aaa86ab328adbd1f61fad892b2fb922caa198..6a214e231c7ccbf5591221e57b81e50abb12ee01 100644 (file)
@@ -260,7 +260,7 @@ SSLRequire           %{SSL_CIPHER_USEKEYSIZE} &gt;= 128
 RewriteEngine        on
 RewriteCond          %{REMOTE_ADDR} !^192\.168\.1\.[0-9]+$
 RewriteCond          %{HTTPS} !=on
-RewriteRule          .* - [F]
+RewriteRule          . - [F]
 
 #   Allow Network Access and/or Basic Auth
 Satisfy              any
index 4a70b5a979f5e10135b8603031e996d906d5a89d..0d96e98454a1b494526d356650a9ea562ce79998 100644 (file)
         # primary vhost<br />
         DocumentRoot /www/subdomain<br />
         RewriteEngine On<br />
-        RewriteRule ^/.* /www/subdomain/index.html<br />
+        RewriteRule . /www/subdomain/index.html<br />
         # ...<br />
     </indent>
     &lt;/VirtualHost&gt;<br />