https://laravel.com/docs/5.3/...
在官方文件中說
If the redirect path needs custom generation logic you may define a redirectTo method instead of a redirectTo property:
下面是我LoginController中的程式碼:
<?php
namespace App\Http\Controllers\User\Ui\Auth;
use App\Http\Controllers\Controller as Controller;
use Illuminate\Foundation\Auth\AuthenticatesUsers;
use Illuminate\Support\Facades\Redirect;
class LoginController extends Controller
{
/*
|--------------------------------------------------------------------------
| Login Controller
|--------------------------------------------------------------------------
|
| This controller handles authenticating users for the application and
| redirecting them to your home screen. The controller uses a trait
| to conveniently provide its functionality to your applications.
|
*/
use AuthenticatesUsers;
/**
* Where to redirect users after login.
*
* @var string
*/
// protected $redirectTo = '/';
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest', ['except' => 'logout']);
config(['app.name' => '点跃']);
}
public function index()
{
return \Auth::user();
}
protected function redirectTo()
{
die('ok');
return Redirect::route('index');
}
}
但是登入成功收任然跳到/home
###
定義一下屬性
redirectTo
就可以了