404 error after installation

Hi all.
I have a brand new installation on a Debian 8 server. Everything was fine in the setup proccess as is inthe documentation.

When i access to invoiceplane http://myserver/invoiceplane y can eccess with the user, i can see the home page but every time i click any link i have this:

Not Found

The requested URL /index.php was not found on this server.

But if i put the ‘index.php’ in the URL it works. Some example:

http://myserver/invoiceplane/quotes/status/all” will get error

but if change (on hand) the URL to

http://myserver/invoiceplane/ index.php /quotes/status/all” will work

MODREWRITE is enable
AllowOverride All is ok
The .htaaccess file is this:

  RewriteEngine On
  RewriteBase /invoiceplane
  RewriteRule ^index\.php$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . /index.php [L]

What i’m missing?

Thanks!