Click to See Complete Forum and Search --> : .htaccess ???


Asch
06-20-2003, 04:05 AM
Hi, can someone explain me what this does ??
it 's in an .htaccess file

I know that it should limit acces or something like that but I dont know more ?? :O)

it works with an cgi script...
------------------------------------------
AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName DenyViaWeb
AuthType Basic


<Limit GET>
order allow,deny
deny from all
</Limit>
-------------------------------------------

thx

asch
:D

AdamGundry
06-20-2003, 04:41 AM
From my understand of .htacess, I think it prevents anyone from accessing the directory content manually, so only the CGI script can read from the directory.

This page might help you: http://httpd.apache.org/docs-2.0/howto/auth.html

Adam

Asch
06-20-2003, 06:51 AM
hmmm okay, very interesting, i didnt know that something like that exists...very nce :O)


thank you...