I'd like to grant access based on one of two conditions:
User is from domain w.x.y.* or w.x.z.*
if not, use basic authentication to grant access.
I have the authentication set up like this (in .htaccess):
AuthType Basic
AuthName Intranet
AuthUserFile /path/to/userfile
AuthGroupFile /dev/null
<Limit GET POST>
require valid-user
</Limit>
Any help would be appreciated!
User is from domain w.x.y.* or w.x.z.*
if not, use basic authentication to grant access.
I have the authentication set up like this (in .htaccess):
AuthType Basic
AuthName Intranet
AuthUserFile /path/to/userfile
AuthGroupFile /dev/null
<Limit GET POST>
require valid-user
</Limit>
Any help would be appreciated!