So this is my solution as of now
<FilesMatch \.*$>
Order deny,allow
Deny from all
</FilesMatch>
<FilesMatch \.(?i:gif|jpe?g|png|js|css|sxw)$>
Order allow,deny
Allow from all
</FilesMatch>
Is this workable?
I was not able to generally allow Resources/Public and deny everything else.
Joerg