On 3/2/2011 11:16 AM, Jeff Mincy wrote: > Also, the rules could be combined into a single rule (untested) using > regexp (?:index|nana|ontokoros|tbt|webadmin) > > uri LOCAL_URI_EXAMPLE > /zynetsw.com\/forms\/use\/(?:index|nana|ontokoros|tbt|webadmin)\/form1.html/
Or, if you want to catch any of the forms, you could use this: uri LOCAL_URI_EXAMPLE /zynetsw\.com\/forms\/use\/.*\/form1.html/ (also escaped the period, as that means "any character" in a Perl regex) -- Bowie
