时间:2021-07-01 10:21:17 帮助过:6人阅读
laravel 框架, 不需要登陆即可进入首页, 该如何设置路由?
不要放在有auth中间件里就可以了。
Route::any('/', 'HomeController@index ');
可在controller中使用except,关键看你怎么写的middleware
public function __construct() {
$this->middleware('auth', ['except' => [
//排除的路由
]]);
}