缺少一些调整,使路由工作在Laravel


Missing some more adjustments to make routing work in Laravel

下面是http://laravel.com/docs/quick#routing

我加上这个:

Route::get('users', function()
{
    return 'Users!';
});

到/app/routes.php的底部,并从我的浏览器http://localhost/users获取它。但是返回的结果是users Not Found

我也尝试过/users的路线,这也是一样的。

哦,不,路由应该是:

http://localhost/index.php/users

应该可以。