我需要在 Squid3 中阻止某个 URL

我需要在 Squid3 中阻止某个 URL

我需要阻止我的 squid3 代理服务器上的某个 url。

我可以这样屏蔽bbc

.bbc.co.uk

但这会阻止所有 BBC 网站,我只想阻止 www.bbc.co.uk/news

这就是我用来阻止网站的方法

acl block dstdomain "/etc/squid3/block.acl"
--Then further down-- 
http_access deny block

看来我自己解决了

acl blockurls url_regex "/etc/squid3/block/urls.acl
--Further Down--
http_access deny blockurls

答案1

看来我自己解决了

acl blockurls url_regex "/etc/squid3/block/urls.acl
# 
# later on in the file
#
http_access deny blockurls

相关内容