Forum Moderators: phranque
# Force all files to text/plain, than whitelist the required
<FilesMatch "\.[a-zA-Z]+">
ForceType text/plain
</FilesMatch>
# Allowable MIME-types (whitelisting)
<FilesMatch "\.[Jj][Pp][Ee]?[Gg]$">
ForceType image/jpeg
</FilesMatch>
<FilesMatch "\.[Pp][Nn][Gg]$">
ForceType image/png
</FilesMatch>
<FilesMatch "\.[Gg][Ii][Ff]$">
ForceType image/gif
</FilesMatch>
<FilesMatch "\.[Pp][Dd][Ff]$">
ForceType application/pdf
</FilesMatch>
<FilesMatch "\.[Gg][Zz]$">
ForceType application/x-gzip
</FilesMatch>