# Tidak boleh ada file PHP/eksekusi script di folder upload.
<FilesMatch "\.(php|phtml|phar|phps|cgi|pl|py|sh|asp|aspx|js)$">
    Require all denied
</FilesMatch>

# Matikan handler/script engine untuk berjaga-jaga
<IfModule mod_php.c>
    php_flag engine off
</IfModule>
<IfModule mod_php7.c>
    php_flag engine off
</IfModule>
<IfModule mod_php8.c>
    php_flag engine off
</IfModule>

Options -ExecCGI -Indexes
RemoveHandler .php .phtml .phar .phps
AddType text/plain .php .phtml .phar .phps
