# public/uploads/branding/.htaccess
# Folder ini menyimpan logo yang dimuat naik pengguna — fail imej sahaja
# yang patut wujud di sini, tapi lapisan ini menghalang PHP dijalankan
# walaupun ada fail berbahaya berjaya dimuat naik dengan nama palsu.

<IfModule mod_authz_core.c>
    <FilesMatch "\.(php|phtml|phar|php3|php4|php5|pl|py|cgi|sh)$">
        Require all denied
    </FilesMatch>
</IfModule>
<IfModule !mod_authz_core.c>
    <FilesMatch "\.(php|phtml|phar|php3|php4|php5|pl|py|cgi|sh)$">
        Order allow,deny
        Deny from all
    </FilesMatch>
</IfModule>

<IfModule mod_php7.c>
    php_flag engine off
</IfModule>
<IfModule mod_php8.c>
    php_flag engine off
</IfModule>

Options -Indexes -ExecCGI
