RedirectToAction("Index") 형식으로 요청하면 특정 로직 처리 후 Index 액션 메서드로 페이지를 이동한다. 참고로 다음은 주요 액션 메서드의 반환값이다.
• Redirect()
- 302 HTTP 상태 코드를 반환
• RedirectPermanent()
- 301 HTTP 상태 코드 반환해서 특정 사이트로 이동
- return RedirectPermanent(http://www.gilbut.co.kr/);
• RedirectToAction()
- 특정 액션 메서드로 이동
- return RedirectToActoin("Index", "Home");
- return RedirectToAction("Index");