Hello i'm trying to run a laravel app inside of a wordpress envoirement,
wordpress is here: http://example.nl
laravel is here: http://example.nl/admin
but i get a white screen and no error what so-ever, i have debug enabled in the .env.
laravel log says nothing usefull
LARAVEL .htacces : located : http://example.nl/admin/public/.htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
is there something i forgot?
Any help is appreciated! THanks