05.20 apache saved
htaccessruletoignorestatsdirectory
Tags add more
.htaccess, ignore, rewrite and url  
Note
This is one example of how you could set up the htaccess ignore rule. In this example, /stats is the URL to ignore.
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. RewriteBase /
  4. RewriteCond %{REQUEST_URI} ^/(stats|failed_auth\.html).*$ [NC]
  5. RewriteRule . - [L]
  6. </IfModule>
Parsed in 0.003 seconds, using GeSHi 1.0.7.14

Modify this Paste