Can you post the .htaccess file here?
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
Your document root is not correct. Set the DocumentRoot for the site to include the /public folder so that when you hit the IP address (without the 'public'), the app loads.
Or, try modifying your current .htaccess file:
RewriteBase /public/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community