# Simple .htaccess for MAMP compatibility
# Use this if the main .htaccess causes issues

# Enable URL Rewriting (if mod_rewrite is available)
<IfModule mod_rewrite.c>
    RewriteEngine On
</IfModule>

# Basic MIME Types
<IfModule mod_mime.c>
    AddType application/pdf .pdf
    AddType application/json .json
    AddType text/plain .txt
    AddType text/css .css
    AddType application/javascript .js
</IfModule>

# Basic security - deny access to sensitive files
<FilesMatch "\.(htaccess|htpasswd|ini|log|sh|inc|bak)$">
    Order allow,deny
    Deny from all
</FilesMatch>

# Prevent directory browsing
Options -Indexes

# Default charset
AddDefaultCharset UTF-8
