繁体   English   中英

路由不工作laravel 5?

[英]Routing is not working laravel 5?

我刚刚安装了新的laravel 5.1,只显示了根页面

Route::get('/', function () {

    return view('welcome');
});

它工作得很好,但不是任何其他路线不起作用:

Route::get('user', function () {
   return "hello";
});

它会抛出未找到的异常404。 请帮我摆脱这个。 提前致谢。

可能是因为您的系统未启用重写模式。 您可以通过index.php启用它或通过以下URL访问它

http://localhost/blog/public/index.php/user

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM