Dear Wiki user, You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change notification.
The following page has been changed by megaspaz: http://wiki.apache.org/httpd/Recipes/PasswordBasicAuth The comment on the change is: This wiki isn't your personal advertising space or link farm ------------------------------------------------------------------------------ [[BR]] ==== Conditional passwordless access for webmasters ==== - The following recipe from [http://www.askapache.com/2006/htaccess/htaccesselite-ultimate-htaccess-article.html AskApache] uses your incorporates the "Satisfy Any", "Allow", and "Order" directives to allow google, CSS and XHTML validation via w3.org, and the web-developer to access the site without being prompted for a password. Everyone else is prompted for a password. This is especially useful for webmasters while working on a site. + The following recipe uses your incorporates the "Satisfy Any", "Allow", and "Order" directives to allow google, CSS and XHTML validation via w3.org, and the web-developer to access the site without being prompted for a password. Everyone else is prompted for a password. This is especially useful for webmasters while working on a site. - {{{AuthName "AskApache.com Administration" + {{{AuthName "example.com Administration" - AuthUserFile /home/askapache.com/.htpasswd + AuthUserFile /some/path/.htpasswd AuthType basic Require valid-user Order deny,allow Deny from all + Allow from 24.205.23.222 w3.org htmlhelp.com googlebot.com google.com google-analytics.com - Allow from 24.205.23.222 - Allow from w3.org - Allow from htmlhelp.com - Allow from googlebot.com - Allow from google.com - Allow from google-analytics.com Satisfy Any }}}
