RouteCollection中的Laravel 5 NotFoundHttpException

时间:2015-06-17 09:53:01

标签: php laravel-5

我在routs.php中定义了以下路径:

Route::get('/',"TodoListController@index" );

Route::get('/todos',"TodoListController@index" );

Route::resource('/', 'TodoListController');

但只有第一个工作。我使用xampp来开发我的Laravel应用程序。 这是工作的网址: http://localhost/restapp/public/ 那不起作用:http://localhost/restapp/public/todos

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

要从您的网址中删除公开

<IfModule mod_rewrite.c> 
    RewriteEngine On RewriteRule ^(.*)$ 
    public/$1 [L] 
</IfModule> 

到.htaccess

或者您可以忘记XAMPP并使用:

php artisan serve