Return-Path: Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 12248 invoked by uid 500); 14 Jul 2003 10:43:06 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 12223 invoked from network); 14 Jul 2003 10:43:05 -0000 Received: from unknown (HELO mail.profundis.se) (213.80.46.101) by daedalus.apache.org with SMTP; 14 Jul 2003 10:43:05 -0000 X-ITHouse-Forward-Path: Received: From PROFUNDIS01 by mail.profundis.se (IT House Mail Server [TRIAL - 120 days left]); Mon, 14 Jul 2003 12:29:04 +0200 Message-ID: <12c901c349f2$bee81560$652e50d5@profundis.se> Reply-To: "Robert Andersson" From: "Robert Andersson" To: References: <010001c349f3$5ce30bd0$854da8c0@notebook> Date: Mon, 14 Jul 2003 12:29:02 +0200 Organization: Profundis MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2727.1300 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Subject: Re: [users@httpd] rewriting fails although there are same patterns michael portmann wrote: > RewriteCond %{SSL_CLIENT_S_DN_O} xxx+zzz_tttt_vvvv RewriteCond takes a regualar expression pattern. The token '+' has the special meaning of matching the previous character or sub-pattern one or more times. So, I think, the pattern "xxx+zzz_tttt_vvvv" would match eg. "xxxxxxxxzzz_tttt_vvvv". See it helps to escape it: RewriteCond %{SSL_CLIENT_S_DN_O} xxx\+zzz_tttt_vvvv Regards, Robert Andersson --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org