# Mengatasi file HTML yg sering di-cache oleh browser sehingga pencetakan akan menampilkan file yg baru saja digenerasi
<IfModule mod_headers.c>
    <FilesMatch "\.(htm|html)$">
        Header set Cache-Control "no-cache, no-store, must-revalidate"
        Header set Pragma "no-cache"
        Header set Expires 0
    </FilesMatch>
</IfModule>

DirectoryIndex index.html
# Turn off PHP
# only for DSO as PHP Handler
# https://docs.cpanel.net/ea4/php/php-handlers/#dso
<IfModule mod_php.c>
    php_flag engine off
</IfModule>
