Forum Moderators: phranque
For example:
# Exit now if small graphic:
RewriteCond %{REQUEST_URI} /smallgraphics/.+\.gif
RewriteRule <DO NOTHING> [L]
# Begin Ban List
I apologize if this question has already come up before on previous threads.
Be very aware of exactly what rules you bypass by inserting this code, since anything after this rule will be skipped if "smallgraphics" are requested:
# Exit now if small graphic:
RewriteRule ^smallgraphics/.+\.gif$ - [L]
# Begin Ban List
Jim