Re: [mod-security-users] regex for matching urls
Brought to you by:
victorhora,
zimmerletw
|
From: Tom A. <tan...@oa...> - 2005-03-07 20:48:00
|
----- Original Message ----- From: "Ivan Ristic" <iv...@we...> > Try replacing \w with [:word:], but beware [:word:] works only > when used in [ and ]. So [\w\-_.]* becomes [[:word:]\-_.] Or you could be a little more liberal and replace [\w\-_.]* with [^/]* Tom |