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] Link to comment https://forums.phpfreaks.com/topic/109555-modrewrite-lookups/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.