로그인 실패 후 리디렉션 고안 내가 찾은 모든 질문은 도우미와의 성공적인 로그인과 관련이 있습니다. after_sign_in_path_for(resource) 사이트 색인에 로그인 양식이 있으며 로그인에 실패하면 "users / sign_in"으로 리디렉션됩니다. 하지만 로그인이 실패하면 어떻게 "site # index"로 리디렉션 할 수 있습니까? 다음을 사용하여 lib 디렉토리에 custom_failure.rb를 만듭니다. class CustomFailure < Devise::FailureApp def redirect_url your_path end def respond if http_auth? http_auth else redirect end end end Devise 이니셜 라이저에 다음을 포함합..