method

redirect_to

redirect_to(location)
private

No documentation available.

# File actionpack/lib/action_dispatch/middleware/actionable_exceptions.rb, line 29
      def redirect_to(location)
        body = "<html><body>You are being <a href=\"#{ERB::Util.unwrapped_html_escape(location)}\">redirected</a>.</body></html>"

        [302, {
          "Content-Type" => "text/html; charset=#{Response.default_charset}",
          "Content-Length" => body.bytesize.to_s,
          "Location" => location,
        }, [body]]
      end