Author: G.Pine (3 Apr 09 6:18am)
doh I wrote a bible's worth of drivel, but I guess I timed out and it's lost to the void. This is good news for you though, because it was a lot of drivel! 3am drivel at that (sleep is for the weak).
410 error means, sorta, "Whatever you're requested was here, but is now gone, and I have no reference to it anymore" -- I think anyway. It's also an uncommon error. Mostly you'll see 400, 401, 403 and 404 errors (mostly 404's, "not found"). Then probably 403s, if you setup some bans in the .htaccess ("deny from...").
Here's a great resource about html error codes:
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
I did exclude a line ("order deny,allow") in the post above, to deny a specific ip (range of ips, list of ips, etc) from ALL your site's goodies do:
<Files *>
order deny,allow
# <--this is a comment tag
# Deny access to all files for IPs: 1.2.3.4, 55.66.77.88, and 9.8.765.432...
deny from 1.2.3.4 55.66.77.88 9.8.765.432
</Files>
# Allow everyone to see error pages though...
<Files 410.shtml>
allow from all
</Files>
# etc...
# it's wise to block access to .htaccess!
<Files .htaccess>
deny from all
</Files>
|