method
redirect_to
v6.1.3.1 -
Show latest stable
- Class:
ActionDispatch::ActionableExceptions
redirect_to(location)private
No documentation available.
# File actionpack/lib/action_dispatch/middleware/actionable_exceptions.rb, line 30
def redirect_to(location)
uri = URI.parse location
if uri.relative? || uri.scheme == "http" || uri.scheme == "https"
body = "<html><body>You are being <a href=\"#{ERB::Util.unwrapped_html_escape(location)}\">redirected</a>.</body></html>"
else
return [400, { "Content-Type" => "text/plain" }, ["Invalid redirection URI"]]
end
[302, {
"Content-Type" => "text/html; charset=#{Response.default_charset}",
"Content-Length" => body.bytesize.to_s,
"Location" => location,
}, [body]]
end