I am sorry about this, but my htdocs root is wrong and I can\'t change that. So I have to make it work in the /public
folder.
I use the normal Laravel .
I solved it partly. If I have a .htaccess in the root instead of /public
with
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /public/index.php/$1 [L]
I can open http://kemtime2_neu.pr.domain.de/login
but the images and css is still wrong. I need to check first if the files exist in /public
. I think this is a new question.