Installation Error

Guys
I trying to install invoiceplane in local.
i copied InvoicePlane files to my local web server.

After that i’m trying to start setup by enter http://localhost/~activdeveloper/invoice/index.php/setup/language, after i selected the language and click continue, i getting error.

The error message:
The requested URL /~activdeveloper/invoice/setup/language was not found on this server.

my .htaccesee file

RewriteEngine on
RewriteBase /invoice
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

Can you help?

Use this instead:

RewriteEngine on
RewriteBase /~activdeveloper/invoice/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

i solved it already…

thank you…