Forum Moderators: phranque
I have been having a pesky bot visit my site too often. It uses alot of different IP's.
The first 3-parts of it's IP are always the same, but the last number is the one that varies. I would like to ban all of the ip's that have the first 3-parts the same, using an .htaccess file, just to make sure I get this guy. Would this be the way to do it, or is the "255" part incorrect?
Order Allow,Deny
Allow from all
Deny from abc.def.ghi.1/255
or maybe it would be:
Order Allow,Deny
Allow from all
Deny from abc.def.ghi.
Jim