Deny rules always appread before the allow rules. So if you e.g. allow myhost.com:80,443/abc/* and want to exclude myhost.com:80,443/abc/noaccesshere/* then this rule needs to appear before: 1.) Deny: myhost.com:80,443/abc/noaccesshere/* 2.) Allow: myhost.com:80,443/abc/* But if you exclude everything for a ressource and want to allow something included in the deny ressource, the allow rule will be in the first position: 1.) Allow: myhost.com:80,443/tobeallowed/* 2.) Deny: myhost.com:80,443/* If something is neither allowed nor denied will be denied by default - similar to the "cleanup" rule you describe.
... View more