Hello,
I use apache 1.3.29 and i want to make simple authentification in subdirectory.
So i make a cgi script and i want to redirect someone who authenticated correctly.
In httpd.conf i want to use "Request_URI" attribute of SetEnvIf to create a new var if only the user was redirect by my script...
SetEnvIf Request_URI "\/cgi\-bin\/test" local_referal
<Directory "/var/www/htdocs/reserve">
Order deny,allow
Deny from all
Allow from env=local_referal
</Directory>
But it don't work
someone can help me ?
thanks