> Using regex "/etc/squid.adservers" I'm attempting to > block any URL's with "penis" AND "large" in the url.
> (/large/ && /penis/) > (/penis/ && /large/) > But this doesnt work :/ With the Squid regex acls, you are working inside the / /. In order to do what you want to do, you'll need two entries like this: large.*penis penis.*large That should work. Adam
