# جلوگیری از دسترسی مستقیم به فایل‌های حساس
<FilesMatch "^(config\.php|config\.sample\.php)$">
    Require all denied
</FilesMatch>

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^(data|src)/ - [F,L]
</IfModule>
