I have two routes, one works, the other does not and I cannot figure out why.
The first one works, when I visit the home page the view is displayed as intended.
Route::get('/', array('as' => 'homepage', function()
{
return View::make('home');
}));
This second one comes up with a NotFoundHttpException
error
Route::get('about', array('as' => 'aboutpage', function()
{
return View::make('about');
}));
My other Laravel project works fine with this formatting and the home page works fine. If I visit localhost/laravel/public/index.php/about
it works but `localhost/laravel/public/about does not.
I'm using WAMP and Apache module rewrite_module is on. I have restarted it multiple times.