miless Posted June 10, 2008 Share Posted June 10, 2008 Does ModRewrite perform a useragent lookup for each banned useragent or does it lookup the useragent just once and uses that lookup to check the banned useragents ? I'm asking this to see if this method is efficient, if not I would write some PHP instead. RewriteEngine on RewriteRule ^403.html$ - [L] RewriteCond %{HTTP_USER_AGENT} ^useragent1 [NC,OR] RewriteCond %{HTTP_USER_AGENT} ^useragent2 [NC,OR] RewriteCond %{HTTP_USER_AGENT} ^useragent3 [NC,OR] RewriteCond %{HTTP_USER_AGENT} ^useragent4 [NC] RewriteRule ^.* - [F,L] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.