You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Robert Andersson <ro...@profundis.nu> on 2003/07/14 12:29:02 UTC

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 <URL:http://httpd.apache.org/userslist.html> 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