On Tue, 2001-09-11 at 22:33, Leonardo Rodrigues Magalhães wrote:
> 
>     Wouldnt this deny
> http://www.mp3.com/scripts/somescript.cgi?value1=a&value2=b ????
No it wouldn't.
mp3$ doesn't match, nor does
mp3\?.*
Rob
>     I was thinking of using
> 
> (extension$|extension\?type*$)
> 
>     will the *$ work ??? What do you think ???
The .*$ is redundant and forcing a longer match than needed - which is
slower.
Also you need .* - * is 0 to many of the prior symbol, and . is any
single character.
So mine was
(extension$|extension\?.*)
>     Hope hearing from you soon,
>     Leonardo Rodrigues
> 
> ----- Original Message -----
> From: "Robert Collins" <robert.collins@itdomain.com.au>
> To: "Leonardo Rodrigues Magalhães" <coelho@persogo.com.br>
> Subject: Re: [squid-users] Bypassing ACLs
> 
> 
> >     Question ...... is there a way of telling squid to bypass arguments
> when
> > applying url_regex rules ?????
> >
> 
> One way is
> (mp3$|mp3\?.*)
> 
> 
> 
Received on Tue Sep 11 2001 - 07:04:22 MDT
This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 17:02:08 MST