# SMG Studio v2.0 - Sécurisation workspace utilisateurs
Order Deny,Allow
Deny from all

# Autoriser seulement les fichiers media
<FilesMatch "\.(mp4|mov|avi|webm|wav|mp3|jpg|png|gif)$">
    Order Allow,Deny
    Allow from all
</FilesMatch>

# Bloquer les scripts
<FilesMatch "\.(php|js|html|htm)$">
    Order Deny,Allow
    Deny from all
</FilesMatch>