我使用 Composer 安装了 Laravel 4,并且建立了一个虚拟主机:
<?php
Route::get('/', function()
{
return View::make('hello');
});
这不是:
Route::get('/hello', function()
{
return View::make('hello');
});
我要打的是 /tasks
台的 TasksController
:
Route::resource('tasks', 'TasksController');
这也给了我404错误。我能做错什么?我违约了。我的项目根目录下的 htaccess 文件:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
我在 Mac 上使用 localhost。