登陆后就跳到了home 如何登陆后跳到/页面?

QQ图片20150601013132.jpg


登陆后就跳到了home 我想让登陆后跳到/根页面

于是我修改了vendor\laravel\framework\src\Illuminate\Foundation\Autu\AuthenticatesAndRegistersUsers.php中的redirectPath

为: public function redirectPath()
{
if (property_exists($this, 'redirectPath'))
{
return $this->redirectPath;
}

return property_exists(class, property)ists($this, 'redirectTo') ? $this->redirectTo : '/';
}

但是不管我重启环境或是composer dump-autoload

但登陆后还是跳到localhost:8000/home 希望知道如何做的朋友能够指点小弟 谢谢!
已邀请:

要回复问题请先登录注册