I have stumbled upon several solutions for limiting access to directories using "Deny for all, Allow from env=search_robot", etc. But then when I also use to require valid-user, those are overridden. Is there a master combo that does them both?
This is some example code for what I mean:
<Directory "/var/www/sitename">
Options MultiViews FollowSymlinks Includes
AllowOverride All
Order Deny,Allow
Allow from All
AuthUserFile /home/user/pwds/sitename/.htpasswd
AuthGroupFile /dev/null
AuthName "Password Protected Area"
AuthType Basic
<Limit GET POST>
SetEnvIf User-Agent ^Swiftype search_robot
Allow from env=search_robot
Allow from live.swiftype.com
Allow from swiftype.com
require valid-user
</Limit>
</Directory>