Hi, I've set up password protection using .htaccess on my apache Windows web server. How can I grant access to 192.168.*.* without asking for a password, and only require login for other IP addresses? Here's the password protect code in my .htaccess file: AuthUserFile c:\Inetpub\.htpasswd AuthName "Restricted Area" AuthType Basic require valid-user Code (markup): I'd like to combine it somehow with the IP based access code: Order deny,allow Allow from 192.168. Code (markup): Thanks!