.htaccess Allow IP-range
.htaccess example,if you want to allow access from the ip-range:
Order Deny,Allow
Deny from all
Allow from 123.
Allow from 234.123.
Allow from 127.0.0.1
this .htaccess will Allow acces from IP-range: 123.xxx.xxx.xxx, 234.123.xxx.xxx and 127.0.0.1.








