Error says "Mod_rewrite is not enabled". BUT IT IS (on Cloudron)

Hi,
Title says it all.
Here is my apache conf:

ServerName %{HTTP_HOST}

<VirtualHost *:80>
    DocumentRoot /app/data/public

    LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy
    CustomLog "|/bin/cat" proxy
    ErrorLog "|/bin/cat"

    <Directory /app/data/public>
        Options FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>

    # Do not remove this include. It's required for your app to see the Real IP
    Include "/app/code/apache/rpaf.conf"
    # This line can be commented out, if you do no require PHPMyAdmin Access
    Include "/app/code/apache/phpmyadmin.conf"

</VirtualHost>

And in the top level .htaccess has:

RewriteEngine on

# If you know mod_rewrite is enabled, but you are still getting mod_rewrite
# errors, uncomment the line below and replace "/" with your base directory.
#
RewriteBase /

Thanks for any help!

When I was moving files to the root directory the invisible .htaccess file did not move. Once that was pointed out by a kind member on the Cloudron forum, I copied it to and my site and it is now working.