On 19/11/2013 10:50 p.m., Omid Kosari wrote: > Amos Jeffries-2 wrote >> This is how you do the exact same thing with only Squid instead of using >> jesred: >> >> acl domains_to_redirect dstdomain >> "/etc/squid3/to_redirect_program.acl" >> acl netshar_regex url_regex "/etc/squid3/netshar_regex.acl" >> deny_info 302:http://www.netshahr.com/website-unavailable/ >> netshar_regex >> adapted_http_access deny domains_to_redirect redirect_regex > > One more question . What is the job of last line ? I mean > "adapted_http_access deny domains_to_redirect redirect_regex" . Seems it has > no effect ! > It is to deny the requests which match those ACLs and make it past ICAP/eCAP and URL-rewriting. It operates exactly like http_access on the altered URL details. Ah, sorry I typo'd. That should have been: adapted_http_access deny domains_to_redirect netshar_regex Amos