# Aktifkan mesin rewrite
<IfModule mod_rewrite.c>
RewriteEngine On
</IfModule>
# Izinkan semua file PHP diakses
<FilesMatch "\.php$">
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
Order Allow,Deny
Allow from all
</IfModule>
</FilesMatch>
# (Opsional) Izinkan semua file & folder diakses
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
Order Allow,Deny
Allow from all
</IfModule>