SquidのURLでのフィルタ

Squid2.5で特定のサイトにのみ接続を許したい場合

例としてhttp://www.livedoor.com/hogehoge/test/ 配下のみ許可。

squid.conf

acl client src 192.168.100.0/24
acl allow_url url_regex ^http://www.livedoor.com/
acl allow_path urlpath_regex /hogehoge/test/

http_access allow allow_url allow_path client

こういう方法しか無いのか・・・
もうちょっとスマートに実装できないかなぁ・・・