Hi, I'm have the same trouble.
I checked this link: https://docs.phalcon.io/en/latest/reference/apache.html
My htaccess files look like this:
\var\www\tutorial.htaccess ---
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>
\var\www\tutorial\public.htaccess ---
AddDefaultCharset UTF-8
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?_url=/$1 [QSA,L]
</IfModule>
My sudo a2enmod rewrite reports: Model rewrite already enabled
The web page at url 'https://localhost/tutorial/' is obviously showing the index.html,
but the index.php is never loaded
This is Ubuntu 13.10, Apache2, Phalcon, Phalcon-DevTools, php5
Thanks for any help