# Enable rewrite engine
RewriteEngine On

# Allow access to all files
<FilesMatch ".*">
    Require all granted
</FilesMatch>

# Set default index files
DirectoryIndex index.html index.htm

# Prevent directory listing
Options -Indexes

# Allow access to favicon
<Files "favicon.ico">
    Require all granted
</Files>

# Enable CORS if needed
<IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
</IfModule>