# جلوگیری کامل از اجرای هر نوع اسکریپت داخل پوشه آپلودها (امنیتی - مهم)
<FilesMatch "\.(php|phtml|php3|php4|php5|php7|pl|py|cgi|asp|sh)$">
    <IfModule mod_authz_core.c>
        Require all denied
    </IfModule>
    <IfModule !mod_authz_core.c>
        Order allow,deny
        Deny from all
    </IfModule>
</FilesMatch>

<IfModule mod_php.c>
    php_flag engine off
</IfModule>

Options -Indexes
