Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get the current absolute URL in my Ruby on Rails view?

The request.request_uri only returns the relative URL.

share|improve this question

19 Answers

up vote 412 down vote accepted

For Rails 2: You want request.url instead of request.request_uri. This combines the protocol (usually http://) with the host, and request_uri to give you the full address.

For Rails 3: You want "#{request.protocol}#{request.host_with_port}#{request.fullpath}", since request.url is now deprecated.

share|improve this answer
18  
as other users pointed: DEPRECATION WARNING: Using #request_uri is deprecated. Use fullpath instead – giladbu Apr 26 '11 at 17:20
6  
@giladbu fullpath does NOT include the protocol/domain/port! It’s not an absolute URL! – Alan H. Aug 1 '11 at 21:36
14  
"http://#{request.host+request.fullpath}" will work or otherwise, (if the port is important) "http://#{request.host}:#{request.port+request.fullpath}" – Nilloc Feb 1 '12 at 20:21
4  
if port important, this one works right: "http://#{request.host}:#{request.port}#{request.fullpath}" – Sucrenoir Apr 19 '12 at 15:16
7  
request.url works for me on rails 3.0.3 – Magesh Apr 27 '12 at 13:55
show 3 more comments

I think that the Ruby on Rails 3.0 method is now request.fullpath.

share|improve this answer
fullpath doesn't include the domain – lulalala May 13 at 2:31

You could use url_for(:only_path => false)

share|improve this answer
In my (a bit special case) this was almost exactly what I wanted. I just changed the option to true and got the url for the current page, without options. Thanks :) – Spiralis Oct 23 '11 at 13:16
this is exactly what i was looking for, thanks! – Adam Dec 29 '11 at 18:39
4  
Just using url_for (with no params) also works. – David Apr 13 '12 at 8:58
@David not in the View it doesn't. But it should'n be used there anyway =) – Lyuben Todorov Nov 14 '12 at 0:25
In my case I wanted to change host name but keep everything else. I found that url_for(host: 'www.newdomain.com') worked the best for me as a solution to the problem. IMO, its a more robust solution since its the same across all versions of rails. – PeppyHeppy Dec 28 '12 at 7:06

DEPRECATION WARNING: Using #request_uri is deprecated. Use fullpath instead.

share|improve this answer
3  
See notes on answer stackoverflow.com/a/2165727/166279, fullpath doesn't include the domain. – Nilloc Feb 1 '12 at 20:07
this line came straight from the log at time of writing when using request.uri and this has already been pointed out several times in this question, but... ok, thanks – ecoologic Feb 1 '12 at 22:17

You can add this current_url method in the ApplicationController to return the current URL and allow merging in other parameters

current_url --> http://...
current_url(:page=>4) --> http://...&page=4
share|improve this answer
1  
This does not appear to be defined in Rails 3.1. – Alan H. Aug 1 '11 at 21:39
Does not appear to work for Rails 3.2. – plang Feb 27 '12 at 9:49
   
you could do it this way url_for params.merge(:format => "PDF", :only_path => false) – montrealmike Jul 17 '12 at 19:28
1  
also if you are in a link_to you can just use params.merge and skip the url_for altogether – montrealmike Jul 17 '12 at 19:44

In Ruby on Rails 3.1.0.rc4:

 request.fullpath
share|improve this answer
2  
fullpath does not provide an absolute URL as the original poster requested. – Olivier Lacan Nov 7 '12 at 18:15

For Ruby on Rails 3:

request.url
request.host_with_port

I fired up a debugger session and queried the request object:

request.public_methods
share|improve this answer
 url_for(params)

And you can easily add some new parameter:

url_for(params.merge(:tag => "lol"))
share|improve this answer
1  
This is far more elegant (if less granular) than the approved answer. – Olivier Lacan Nov 7 '12 at 18:12

I needed the application URL but with the subdirectory. I used:

root_url(:only_path => false)
share|improve this answer

I think request.domain would work, but what if you're in a sub directory like blah.blah.com? Something like this could work:

<%= request.env["HTTP_HOST"] + page = "/" + request.path_parameters['controller'] + "/" + request.path_parameters['action'] %>

Change the parameters based on your path structure.

Hope that helps!

share|improve this answer
8  
Yes Jaime's answer is way better, but if you want to be really inefficient, you could do it my way. – James M Jan 29 '10 at 22:47

It looks like request_uri is deprecated in Ruby on Rails 3.

Using #request_uri is deprecated. Use fullpath instead.
share|improve this answer

This works for Ruby on Rails 3.0 and should be supported by most versions of Ruby on Rails:

request.env['REQUEST_URI']
share|improve this answer

None of the suggestions here in the thread helped me sadly, except the one where someone said he used the debugger to find what he looked for.

I've created some custom error pages instead of the standard 404 and 500, but request.url ended in /404 instead of the expected /non-existing-mumbo-jumbo.

What I needed to use was

request.original_url
share|improve this answer

If by relative, you mean just without the domain, then look into request.domain.

share|improve this answer

Using Ruby 1.9.3-p194 and Ruby on Rails 3.2.6:

If request.fullpath doesn't work for you, try request.env["HTTP_REFERER"]

Here's my story below.

I got similar problem with detecting current URL (which is shown in address bar for user in her browser) for cumulative pages which combines information from different controllers, for example, http://localhost:3002/users/1/history/issues.

The user can switch to different lists of types of issues. All those lists are loaded via Ajax from different controllers/partials (without reloading).

The problem was to set the correct path for the back button in each item of the list so the back button could work correctly both in its own page and in the cumulative page history.

In case I use request.fullpath, it returns the path of last JavaScript request which is definitely not the URL I'm looking for.

So I used request.env["HTTP_REFERER"] which stores the URL of the last reloaded request.

Here's an excerpt from the partial to make a decision

- if request.env["HTTP_REFERER"].to_s.scan("history").length > 0
  - back_url = user_history_issue_path(@user, list: "needed_type")
- else
  - back_url = user_needed_type_issue_path(@user)
- remote ||= false
=link_to t("static.back"), back_url, :remote => remote
share|improve this answer
Yup, fullpath gets you the url you requested, not the url you came from, which is what I needed as well. Thanks for this! – Spencer Rathbun Aug 10 '12 at 13:31
you're welcome :^) – Serge Seletskyy Aug 13 '12 at 9:52
(url_for(:only_path => false) == "/" )? root_url : url_for(:only_path => false)
share|improve this answer

In Rails 3 you can use

request.original_url

http://apidock.com/rails/v3.2.8/ActionDispatch/Request/original_url

share|improve this answer
Best answer for me! – dtt101 Apr 1 at 11:27

if you want to be specific, meaning, you know the path you need:

link_to current_path(@resource, :only_path => false), current_path(@resource)
share|improve this answer

To get the absolute URL which means that the from the root it can be displayed like this

<%= link_to 'Edit', edit_user_url(user) %>

The users_url helper generates a URL that includes the protocol and host name. The users_path helper generates only the path portion.

users_url: http://localhost/users
users_path: /users
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.