Answer by Mitchell McKenna for Password Protecting App in Development (Codeigniter)
September 13 2010, 4:46am
To exclude specific pages from being password protected, for example page.html you would add the following to your .htaccess file:
<Files "page.html"> Allow from all Satisfy any </Files>
You can see examples of how to do this, as well as how to exclude multiple files here.