Just trying out laravel 4 which I installed using composer. Have setup a virtualhost. Only the root route is working:
Route::get('/', function()
{
return View::make('hello');
});
Even this is not working
Route::get('/hello', function()
{
return View::make('hello');
});
What I am trying to hit is a TasksController at /tasks:
Route::resource('tasks', 'TasksController');
This is giving me 404 too.
What could I be doing wrong? I followed these instructions while installing: http://chris-schmitz.com/getting-started-with-laravel-4/
Also I do have a default .htaccess file at the root of my project:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
I am on a mac using localhost.