Hi everyone,
I install phalcon ok, but htaccess file seem not execute.
Exam: type "localhost/invo" => it is not run.
type "localhost/invo/public" => it is run.
the file: /etc/apache2/sites-available/default is
<Directory /var/www/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
and /var/www/html/invo/.htaccess is
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>
I have check mod_rewrite, it is already enable
Help me please.