My goal is to edit my .htaccess file to require a user/password combination for all connections except a single IP.
My current htaccess file requires a password from all connections and is this:
How can I allow 1 IP to bypass the user/pass requirement?Code:AuthType Basic AuthName "dev" AuthUserFile "/home/ddragon/.htpasswds/public_html/passwd" require valid-user
I've tried this:
but no luck.Code:AuthType Basic AuthName "dev" AuthUserFile "/home/ddragon/.htpasswds/public_html/passwd" require valid-user Allow from <<removed>> Satisfy Any
Any help is really appreciated!



Reply With Quote
Bookmarks