OpenXE/.htaccess

20 lines
436 B
ApacheConf
Raw Permalink Normal View History

# Generated file from class.acl.php
# For detection of htaccess functionality
2024-06-01 13:42:42 +02:00
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