Forum Moderators: goodroi
RewriteCond %{HTTP_USER_AGENT} Mozilla/4 [NC] #AND
RewriteCond %{HTTP_USER_AGENT} MSIE/\ (1-6) [NC] #BUT NOT
RewriteCond %{HTTP_USER_AGENT} !(google|msn|bing) [NC]
RewriteRule 403.php [F] (1-6) should be [1-6] here. MSIE/\ should be MSIE\ too. The slash should not be escaped. RewriteRule 403.php [F] RewriteRule !^403\.php - [F]