htaccess – Allow from IP
July 14th, 2010Prompt for access, except the allowed IP’s
AuthUserFile /www/site.com/www/homepage/.htpasswd
AuthType Basic
AuthName “Password Protected Area”
require valid-user
order deny,allow
deny from all
allow from 123.123.123.123 122.122.122.122
Satisfy Any