Is it possible to serve up a zero length (or very short) 403 page using htaccess if you also have a custom 403 page set up?
I run a website for kids, so there are custom versions of all the relevant error pages. The problem is bad bots. Where appropriate, I'd prefer to give them a zero length (or very short) 403.
I did try
RewriteRule ^.*$ onebyte.txt [R=403,L]
but that returned the custom 403 page. I have seen suggestions for using [G] - gone, but I have a child friendly version of that running already.
I could use php, but I'd prefer to save server loading and use htaccess directly if possible.
Suggestions anyone?