I am refreshing my Laravel basics and have run into an issue straight away.
I am using a Bitnami WAMP stack and have a Laravel project setup and working. The first change I have made is to add another route to the /routes/web.php file like this...
Route::get('/hello', function () {
return 'Hello world';
});
But when I go to my url www.example.com/hello I get a 404
Artisan shows the route...
| GET|HEAD | hello | | Closure | web
Anyone any pointers on troubleshooting? Could it be my Bitnami configuration at fault?
artisan route:list? - Devon/) work? Is the docroot correctly set up at/public, etc? - Don't Panic