- See below
- Yes. I have PHP 7.3.15, MySQL 5.7.28 and all the other stuff
- Yes
- What rights does the user need?
- Debian, its Netcup.de
- PHP 7.3.15
.htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /invoice
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
## Remove the hash in front of the following two lines if you want to force HTTPS
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>