The problem is that if I do:

<Location />
        Order deny,allow
        Deny from all
</Location>
<Location /index.php>
        Order deny,allow
        Allow from all
</Location>
<Location /program2>
        Order deny,allow
        Deny from all
        Allow from 127.0.0.1
</Location>

then calling http://localhost/index.php/program2 would access program2 when he shouldn't

On 29-03-2010 11:42, Igor Cicimov wrote:

Your RewriteRule is wrong redirects everything to index.php in the root directory where you dont have access

On Mar 29, 2010 8:24 PM, "Henrik Gemal" <h...@mail.dk <mailto:h...@mail.dk>> wrote:

I use mod_rewrite and in the root of the website I have this in the .htaccess file:

<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-unsubscr...@httpd.apache.org <mailto:users-unsubscr...@httpd.apache.org> " from the digest: users-digest-unsubscr...@httpd.apache.org <mailto:users-digest-unsubscr...@httpd.apache.org> For additional commands, e-mail: users-h...@httpd.apache.org <mailto:users-h...@httpd.apache.org>

Reply via email to