<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?url=$1 [qsappend,last] </IfModule> My index.php is simple: <?php echo "hello"; ?> My URLs are something like this: http://localhost/program1/info http://localhost/program2/info Now I want to restrict the access to /program2 to certain IP. I've tried: <Location /> Order deny,allow Deny from all </Location> <Location /program1> Order deny,allow Allow from all </Location> <Location /program2> Order deny,allow Allow from 127.0.0.1 </Location> But it doesn't work If I try to load http://localhost/program2 I get: "You don't have permission to access /index.php on this server." So it had something to do with mod_rewrite Help --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx " from the digest: users-digest-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx