私はLaravel 5で、このようなURLを持っている:私はこのURLを入力するとユーザーをカスタムURL(表示)にリダイレクトする方法
domain.com/search-user/[email protected]
、それが自動的に与えられた電子メールでデータを検索します。
他のコントローラのユーザーをこのURLにどのようにリダイレクトする必要がありますか?
私が試してみましたが、それは動作しません:
return view(‘controller.search-user')->with('email', $request->email);
マイroutesファイル:
Route::post('/search-user', '[email protected]');
Route::get('/search-user/{email}', '[email protected]');
-------解決しよう---------私はこれがうまくいくと思います
return \Redirect::to('http://domain.com/search-user/'.$request->email);
ありがとうございますが、このようなエラーが表示されます。「UrlGenerator.php行のInvalidArgumentException 314:ルート[search-user]が定義されていません」 P.S私はまた、ルートファイル情報をプライマリトピックに含めました。 –