# Allow access to audio files
<IfModule mod_headers.c>
    <FilesMatch "\.(wav|mp3|ogg|m4a|aac)$">
        Header set Content-Disposition inline
        Header set Cache-Control "public, max-age=31536000"
    </FilesMatch>
</IfModule>

# Set proper MIME types for audio files
AddType audio/wav .wav
AddType audio/mpeg .mp3
AddType audio/ogg .ogg
AddType audio/mp4 .m4a
AddType audio/aac .aac

# Allow access to all files in this directory
Order allow,deny
Allow from all
Satisfy any
