On Mon, May 08, 2006 at 03:30:17PM +0430, power159 wrote: > i am useing this config : > > ************************************************** > acl fullaccess src 127.1.10.5/255.255.255.255 > acl halfaccess src 127.1.10.0/255.255.255.255 > acl noneaccess src 127.0.0.1/255.255.255.255 > > acl filter1 url_regex -i "/urls.txt" > acl filter2 url_regex -i mysite.com > > deny_info ERR_HALF_ACCESS filter1 > deny_info ERR_NONE_ACCESS filter2 > > > http_access allow fullaccess > > http_access allow halfaccess filter1 > http_access allow noneaccess filter2 > > **************************************************** > > now all of this working but deny_info for last line is standard access > denied ! > > http_access allow halfaccess filter1 --> showing standard Access denied > http_access allow noneaccess filter2 --> showing custom error > > AND! when i am repacing this 2 line , again last line is howing standard > error ! > > http_access allow noneaccess filter2 --> showing standard Access denied > http_access allow halfaccess filter1 --> showing custom error The page defined by "deny_info" will not match here because you "allow" the access. You need to connect it to the ACL that matches when an access is denied. After all... it's not called "allow_info" for a reason. ;) Add the following lines: deny_info ERR_HALF_ACCESS halfaccess deny_info ERR_NONE_ACCESS noneaccess http_access deny halfaccess http_access deny noneaccess http_access deny all Kindly Christoph