I tried to run InvoicePlane on my vps. I use nginx and I have PHP7.0. Database is externaly hosted, not on my vps.
I put all of the files in [root_directory]/invoice
This is my .htaccess (in the subfolder /invoice) :
…
RewriteEngine on
RewriteBase /invoice
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
…
But when I try to access site.com/invoice/setup I have a 404 error, not found.
Why I’ve got this error, there a specific configuration for nginx ?