method

original_fullpath

original_fullpath()
public

No documentation available.

# File actionpack/lib/action_dispatch/http/request.rb, line 125
    def original_fullpath
      @original_fullpath ||= (env["ORIGINAL_FULLPATH"] || fullpath)
    end

1Note

Difference between fullpath

Ajedi32 ยท Jul 16, 2013

From what I've seen, it looks like the difference between this and #fullpath is that this method doesn't include parameters that weren't in the original url (i.e. parameters that were sent via POST instead of GET).