Forum Moderators: phranque
Welcome to WebmasterWorld!
Something like this should work. You will have to adjust the authorization (password) file path and the allowed IP addresses. Add more "Allow from" lines at the end with your local addresses as needed.
AuthType Basic
AuthName "Please Log in"
AuthUserFile /httpd/secure/.htpasswd
Satisfy any
Require valid-user
Order Deny,Allow
Deny from all
Allow from 192.168.0.
Allow from 127.0.0.1
Jim