为了账号安全,请及时绑定邮箱和手机立即绑定

路由参数id为空时候跳转到上层路径,是什么原因?

Route::get('user/{id?}', function ($id = null) {
    //id is null , and display list of users
    if ($id == null) return 'User List';
    //id is not null , display the user's info
    else return 'User-'.$id;
});

访问http://localhost:8888/laravel/public/user/时候,参数为空的时候自动跳转到了http://localhost:8888/user,服务器返回:

Not Found

The requested URL /user was not found on this server.

调试环境为MAMP,请教下这是什么原因呢 和老师的演示不一样呀~谢谢


正在回答

2 回答

http://localhost:8888/laravel/public/user 不会报错。但是为http://localhost:8888/laravel/public/user/ 就会301到http://localhost:8888/user  了

0 回复 有任何疑惑可以回复我~

我也遇到同样的问题了。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

路由参数id为空时候跳转到上层路径,是什么原因?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信