# Public folder .htaccess
Options -Indexes

# Routing default
DirectoryIndex index.php

# Block PHP execution dalam assets folder (extra protection)
<FilesMatch "\.(php|phtml|php5|phar)$">
    <If "%{REQUEST_URI} =~ m#^/assets/#">
        Require all denied
    </If>
</FilesMatch>
