Jump to content

ModRewrite lookups


miless

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.