[EMAIL PROTECTED] wrote: > my acl is for blocking downloading > acl dlb urlpath_regex -i .exe$ .mp3$ .mov$ .mpg$ .mp?$ .avi$ .rm$ > .wma$ .mpeg$ > http_access deny dlb > but it is not working and also how can i block down loading in a time > range
The '.' is a special character in regex matching. If you want to use a literal '.', you must escape it with a backslash, like this: \.exe$ Also, can you clarify "it is not working"? Post your squid.conf (without comments or blank lines) and access.log entries for the content you are trying to block. Adam
