Forum Moderators: phranque
BrowserMatch "^Mozilla$" I believe should work but I wanted to get a second opinion before I update my live server which has dozens of unique visitors every minute. Don't want to accidentally ban all Mozilla UAs
That user-agent regex looks good to me, but since you're using mod_setenvif to set a variable for later use by mod_access, also make darn sure you check your Order and Deny from directives against the documentation, too!
BrowserMatch "^Mozilla$" Getout
#
<Files *>
Order Deny,Allow
Deny from env=Getout
Allow from all
</Files>