I wanted to block google logo via Squid proxy:

So I added this line to block.acl:
google\..+/logos/.+ in squid.conf I have this:
acl bad_domain dstdom_regex "/etc/squid/block.acl" acl good_domain dstdom_regex "/etc/squid/white.acl" http_access deny bad_domain http_access allow good_domain http_access deny all But the image is still not blocked: https://www.google.ru/logos/doodles/2013/doctor-whos-50th-anniversary-6317003539218432-res.png.
What to do?