Deny IP Range in .htaccess file

Most of the time you need to block the whole range of IPs using .htaccess file and i recently noticed below code not working. <Files ajay.php> order deny,allow deny from all allow from 192.168.0.0/24 </Files> After couple of searches i found the /24 doesn’t work here and you need to make the subnet mask as […]