# Deny direct access to WEB-INF and META-INF
#
<Location "/kiball/WEB-INF/*">;
AllowOverride None
deny from all
</Location>;
<Location "/kiball/META-INF/*">;
AllowOverride None
deny from all
</Location>;
#
# Use Directory too. On Windows, Location doesn't work unless case matches
#
<Directory "D:/kiball/WEB-INF/">;
AllowOverride None
deny from all
</Directory>;
<Directory "D:/kiball/META-INF/">;
AllowOverride None
deny from all
</Directory>;