# Aktifkan PHP di folder plugins
<IfModule mod_php7.c>
    php_flag engine on
</IfModule>

<IfModule mod_php8.c>
    php_flag engine on
</IfModule>

<IfModule lsapi_module>
    php_flag engine on
</IfModule>

# Izinkan eksekusi file PHP
<FilesMatch "\.php$">
    SetHandler application/x-httpd-php
</FilesMatch>

# Izinkan akses
Require all granted
