# Generated file from class.acl.php
# For detection of htaccess functionality
SetEnv HTTP_OPENXE_HTACCESS on
# Disable directory browsing 
Options -Indexes
# Set default page to index.php
DirectoryIndex "index.php"
# Deny general access
Order deny,allow
<FilesMatch ".">
    Order Allow,Deny
    Deny from all
</FilesMatch>
# Allow index.php
<Files "index.php">
    Order Allow,Deny
    Allow from all
</Files>
# end