# ========================================
# EMERGENCY FIX - Allow Directory Access
# ========================================

# Allow everyone to access files
<FilesMatch ".*">
    Order allow,deny
    Allow from all
</FilesMatch>

# Set index file
DirectoryIndex index.html

# Allow directory access
Options -Indexes +FollowSymLinks

# Basic MIME types
AddType text/html .html
AddType application/javascript .js
AddType text/css .css
AddType image/png .png
