Ever wanted a directory that was restricted to everyone outside your domain? Better yet, did you want anyone access WITHIN your domain denied? Well, here's how to setup access denial/approval of a directory on the WWW.
AuthUserFile /dev/null AuthGroupFile /dev/null AuthName OnlyFromUNO <Limit GET> order deny,allow deny from all allow from .unomaha.edu allow from .novia.net </Limit>You can copy the above for yourself, but replace the "allow from" lines with the appropriate domains that you want to have access. Not too difficult, this one is really simple.
AuthUserFile /dev/null AuthGroupFile /dev/null AuthName NotFromUNONovia <Limit GET> order allow,deny allow from all deny from .unomaha.edu deny from .novia.net </Limit>
This will allow access to the directory from ALL sites except those specified. Simple enough?