You have two choices:
1) run three separate apache processes for each address. Depending on server load, not necessarily a good idea.
or
2) use the VirtualHost directive (if you aren't already)
Within each VirtualHost directive you are able to specify the DocumentRoot for that specific...
Try this for you .htaccess file:
AuthType Basic
AuthName Intranet
AuthUserFile /path/to/userfile
<LIMIT GET POST>
order deny,allow
deny from all
allow from w.x.y.
allow from w.x.z.
require valid-user
satisfy any
</LIMIT>
Also, in your httpd.conf file you will need to have an...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.