method
original_fullpath
v3.2.1 -
Show latest stable
- Class:
ActionDispatch::Request
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
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).