Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 67054 invoked from network); 22 Apr 2005 17:56:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 22 Apr 2005 17:56:32 -0000 Received: (qmail 43389 invoked by uid 500); 22 Apr 2005 17:56:57 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 43370 invoked by uid 500); 22 Apr 2005 17:56:57 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 43350 invoked by uid 99); 22 Apr 2005 17:56:57 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 22 Apr 2005 10:56:57 -0700 Received: (qmail 67039 invoked by uid 65534); 22 Apr 2005 17:56:29 -0000 Message-ID: <20050422175629.67038.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: svn commit: r164263 - /httpd/httpd/branches/2.0.x/docs/manual/mod/mod_rewrite.xml Date: Fri, 22 Apr 2005 17:56:29 -0000 To: cvs@httpd.apache.org From: slive@apache.org X-Mailer: svnmailer-1.0.0-dev X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: slive Date: Fri Apr 22 10:56:28 2005 New Revision: 164263 URL: http://svn.apache.org/viewcvs?rev=3D164263&view=3Drev Log: Backport NE and NC RewriteRule flag docs which were somehow missed. Modified: httpd/httpd/branches/2.0.x/docs/manual/mod/mod_rewrite.xml Modified: httpd/httpd/branches/2.0.x/docs/manual/mod/mod_rewrite.xml URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.0.x/docs/manual/m= od/mod_rewrite.xml?rev=3D164263&r1=3D164262&r2=3D164263&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- httpd/httpd/branches/2.0.x/docs/manual/mod/mod_rewrite.xml (original) +++ httpd/httpd/branches/2.0.x/docs/manual/mod/mod_rewrite.xml Fri Apr 22 1= 0:56:28 2005 @@ -1481,6 +1481,32 @@ But be careful not to create an infinite loop! =20 +
  • 'nocase|NC' + (no case)
    + This makes the Pattern case-insensitive, + i.e., there is no difference between 'A-Z' and + 'a-z' when Pattern is matched against the current + URL.
  • + +
  • + 'noescape|NE' + (no URI escaping of + output)
    + This flag keeps mod_rewrite from applying the usual URI + escaping rules to the result of a rewrite. Ordinarily, + special characters (such as '%', '$', ';', and so on) + will be escaped into their hexcode equivalents ('%25', + '%24', and '%3B', respectively); this flag prevents this + from being done. This allows percent symbols to appear in + the output, as in=20 + + RewriteRule /foo/(.*) /bar?arg=3DP1\%3d$1 [R,NE] + + + which would turn '/foo/zed' into a safe + request for '/bar?arg=3DP1=3Dzed'.=20 +
  • +
  • 'nosubreq|NS' (used only if no internal