I have something like this in a site's htaccess
<Limit GET POST>
order allow,deny
deny from xx.xx.xx.xx
deny from xx.xx.xx.xx
etc.
allow from all
</Limit>
I am going to add a range
deny from xx.xx.xx.*
But I would like only the users of this range of blocked IPs to see a special error page for them.
Is this possible?