Hello all, I am using htaccess to lock sensitive areas on my site down with htaccess allowing only my IP to get through... AuthUserFile /dev/null AuthGroupFile /dev/null AuthName "Example Access Control" AuthType Basic <LIMIT GET> order deny,allow deny from all allow from **.***.***.*** </LIMIT> Can I also have it password protected so that even though my IP matches I still need to provide a username and password?? Thanks.