私は新しいプロジェクトを構築しようとしています。私はLaravel 5.3を使用しています。Laravel 5.3ログインルート - RouteCollection.phpのNotFoundHttpException
Those: Auth::routes();
:
NotFoundHttpException in RouteCollection.php
は、私は新しいアップデートが付属していますlaravelの認証ルートを削除: 私の問題は、認証ルートが期待されるように..私はオールウェイズ次のエラーを取得する動作しないということであり、
と、それらを置き換え:今、私はそれらを使用しようとしているが、私はオールウェイズ言及した電子を得る
Route::group(['middleware' => ['web']], function() {
// Login Routes...
Route::get('login', ['as' => 'login', 'uses' => 'Auth\[email protected]']);
Route::post('login', ['as' => 'login.post', 'uses' => 'Auth\[email protected]']);
Route::post('logout', ['as' => 'logout', 'uses' => 'Auth\[email protected]']);
// Registration Routes...
Route::get('register', ['as' => 'register', 'uses' => 'Auth\[email protected]']);
Route::post('register', ['as' => 'register.post', 'uses' => 'Auth\[email protected]']);
// Password Reset Routes...
Route::get('password/reset', ['as' => 'password.reset', 'uses' => 'Auth\[email protected]']);
Route::post('password/email', ['as' => 'password.email', 'uses' => 'Auth\[email protected]']);
Route::get('password/reset/{token}', ['as' => 'password.reset.token', 'uses' => 'Auth\[email protected]']);
Route::post('password/reset', ['as' => 'password.reset.post', 'uses' => 'Auth\[email protected]']);
});
オーケーxception
私がテストしたURL:http://localhost/project/public/login
私は「国民が」XAMPPまたはそのような何かから.. thatsのどこから来るのか知らない..
だからこれは私にエラーを与えます。私はこのルートを追加する場合
:
Route::get('/', 'Auth\[email protected]');
// outsiteと私はログインフォームと
細かい何もかもにリダイレクト
ルートグループの内部を私がしようとした場合:
Route::get('/test', 'Auth\[email protected]');
// Route :: get( 'test'、...)と同じ
私もエラーが発生します。誰かがその解決策を持っていますか?
オハイオ州に行く必要が...神damnit – ProgrammingArt
が答えを書き、私は最良の答えとしてそれを投票します – ProgrammingArt