I need to setup a reverse proxy on the same Windows server that allows only certain defined URLs (www.somedomain.com/Test/this_url_only.asp). Squid-Listen-On:8880 -> send to localhost:8888 (IIS) I've got the reverse proxy working using the following in my squid.conf file: http_port 192.168.10.81:8880 accel defaultsite=vmsquid01 cache_peer 127.0.0.1 parent 8888 0 no-query originserver I can't seem to get Squid to only allow defined URLs. Is this what I should be using? acl allowed_URL urlpath_regex ^Test/this_url_only.asp cache_peer_access 127.0.0.1 allow allowed_URL