I am currently using this in my .htaccess:
RewriteCond %{HTTP_USER_AGENT} Chrome
RewriteRule .* - [L]
RewriteRule .* http://domain.com/browsererror.html [R,L]
It is working good but what I want is to just disable Mozilla Firefox browser and enable all other browsers. In my current .htaccess I am able to only enable Google Chrome and all other browsers are automatically disabled. is there any short .htaccess code so that I can only disable Mozilla Firefox browser and all other browsers will work fine ? I just want to disable access from Firefox browser.