Synopsis
You might have defied certain rules which filters access to certain domains. While accessing those domains, Squid normally displays a default error page. Using this tag, we can define a customized error page.
Arguments
err_page_name
|
Customized error page to be displayed
|
acl
|
acl for which the page to be displayed
|
link
|
Link to be displayed on deny access
|
Example(s)
acl test1 urlpath_regex -i .index.html
http_access deny test1
deny_info http://www.google.co.in test1
On satisfying http_access, instead of the default error page, the site google will be loaded. |