Laravel 리디렉션 치트 시트
https://codeanddeploy.com/blog/laravel/laravel-redirect-cheat-sheet
이 게시물에서는 Laravel 개발에 유용한 Laravel Redirect 치트 시트를 배웁니다.
임시 리디렉션을 나타내는 상태 302의 다른 페이지로 리디렉션됩니다.
//redirect to another page. Status is 302 indicating temporay redirect
Route::redirect('/page', '/new-page');
이 예에서는 페이지 상태를 영구 리디렉션을 나타내는 세 번째 매개변수로 정의할 수 있습니다.
//can pass status as 3rd Parameter. 301 indicates permanent redirect
Route::redirect('/page', '/new-page', 301);
위의 예와 같지만 301 페이지 상태를 설정할 필요가 없습니다.
//Same as above
Route::permanentRedirect('/page', '/new-page');
이 예는 매개변수를 사용하여 리디렉션할 수 있음을 보여줍니다.
//Redirect along with the parameter
Route::redirect('/page/{param}', '/new-page/{param}');
이 예제는 사용 가능한 모든 매개변수로 리디렉션할 수 있습니다.
//Redirect with all parameters
Route::redirect('/page/{params?}', '/new-page/{params?}')->where('params', '(.*)');
이 튜토리얼이 도움이 되었으면 합니다. 친절하게 여기를 방문하십시오 https://codeanddeploy.com/blog/laravel/laravel-redirect-cheat-sheet 이 코드를 다운로드하려면.
행복한 코딩 :)
Reference
이 문제에 관하여(Laravel 리디렉션 치트 시트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codeanddeploy/laravel-redirect-cheat-sheet-g36텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)