I'm trying to get htaccess to work. I'm probably missing something very obvious. Thanks ahead for any input.
I've created my .htaccess file:
AuthUserFile /home/kev/test/.htpasswd
AuthGroupFile /dev/null
AuthName HTACCESS LOGIN
AuthType Basic
<Limit GET POST>
require user joe
</Limit>
And I was able to make my .htpasswd file with no problem.
My httpd.conf file has the .ht area uncommented. But I still can access the pages in the directory where the .htaccess file is.
Am I missing something else in the apache configuring or some line in the .htaccess file?