# $Id: .htaccess,v 1.3 2005/03/18 20:04:24 68user Exp $

<Files secret.html>
  AuthUserFile /home/68user/public_html/net/sample/http-auth/.htpasswd
  AuthGroupFile /dev/null
  AuthName "Secret File"
  AuthType Basic
  require valid-user
</Files>

<Files .htaccess>
  #  allow from all
  #  以前は ↑だったが、Apache 2.4 からは ↓ に変わった模様
  Require all granted
</Files>

<Files .htpasswd>
  #  allow from all
  #  以前は ↑だったが、Apache 2.4 からは ↓ に変わった模様
  Require all granted
</Files>
