<FilesMatch "(?i)\.(php[0-7]?|phtml|phps|xphp|html?|xhtml|js|cgi|pl|exe|sh)$">
    Require all denied
</FilesMatch>

# Nonaktifkan handler PHP di folder ini
RemoveHandler .php .phtml .php[0-7]
RemoveType .php .phtml .php[0-7]

# Nonaktifkan PHP engine (buat yang pakai mod_php)
<IfModule mod_php.c>
    php_flag engine off
</IfModule>

# Pesan error 403 custom (opsional, bisa pakai file juga)
ErrorDocument 403 "<html><head><title>403 Forbidden</title></head><body><h1>Access Denied</h1></body></html>"
