# add something like this snippet to your httpd.conf file
# to allow the examination of .htaccess files in a selected
# directory

<Directory "/usr/local/apache/htdocs/test/broken">

	AllowOverride All

	# set access control
	Order allow,deny
	Allow from all

</Directory>

