Re: Restricting access with .htaccess; first IP then auth
you need to use the 'Satisfy any' directive
in your .htaccess you need the following lines..
Allow from <domain.com>
Require valid-user
Satisfy any
Satisy any will say if it's allowed from <domain.com> it's ok OR if
they are a valid-user (from anywhere) it's ok too.
|