I want to redirect all the inside network IPs to an error page except some IPs, 
A condition like this:

if ( IP_from_Network = 192.168.1.0 and ((IP != 192.168.1.4) or (IP != 
192.168.1.5) or (IP != 192.168.1.6)) )
{
redirect to an error page
}

so I' trying to achieve this using RewriteEngine:

 RewiteEngine On
      RewriteCond   %{REMOTE_ADDR}   !^192\.168\.1\.4$  [NC]
      RewriteCond   %{REMOTE_ADDR}   !^192\.168\.1\.5$  [NC]
      RewriteCond   %{REMOTE_ADDR}   !^192\.168\.1\.6$  [NC]
      RewriteCond   %{REMOTE_ADDR}   ^192\.168\.1\.*$  [NC]
      RewriteCond    %{REQUEST_URI}   ^/test/manager/.* [NC]
      RewriteRule    ^(.*)$           -                 [R=404,L]

Is this would do what I want or should I use other tags like [OR]?
                                          
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to