method

_url_host_allowed?

_url_host_allowed?(url)
private

No documentation available.

# File actionpack/lib/action_controller/metal/redirecting.rb, line 197
      def _url_host_allowed?(url)
        URI(url.to_s).host == request.host
      rescue ArgumentError, URI::Error
        false
      end