I have the following htaccess file:
Order Deny,Allow
Deny from All
Allow from 192.168.0
AuthType Basic
AuthName "Axman's Website"
AuthUserFile /path/to/.htpasswd
require valid-user
Satisfy Any
What i need to do is allow acces to a certian file no matter what in this same directory. I cannot figure out how to get the one file excluded from the .htaccess password authentication. Any suggestions?
Order Deny,Allow
Deny from All
Allow from 192.168.0
AuthType Basic
AuthName "Axman's Website"
AuthUserFile /path/to/.htpasswd
require valid-user
Satisfy Any
What i need to do is allow acces to a certian file no matter what in this same directory. I cannot figure out how to get the one file excluded from the .htaccess password authentication. Any suggestions?