views:

10

answers:

0

Hi I'm trying to achieve something like this:

.htaccess:

AuthType Basic
AuthName "My secure page"
AuthUserFile .passwords
Require valid-user

<Location "index.php?id=62">
Allow from all
Satisfy any
</Location>

So the entire application should be "secured" using http basic auth, except one specific request. Is there any smart way to resolve this?

Of couse the example above won't work because doesn't parse the query string but I hope you get my problem here...

Thx