[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] .htaccess files and password protecting Directories



> Here is my . htaccess file
> 
> # Access file
> order allow,deny
> allow from all
> require valid-user
> Authname "Rotary Members Only"
> Authtype Basic
> AuthUserFile /home/sites/.htpasswd

Use the following for your .htaccess file:

AuthName "Rotary Members Only"
AuthType Basic
AuthUserFile /home/sites/.htpasswd
AuthPAM_Enabled off
<Limit GET POST>
require valid-user
</Limit>

JC Jones  :)