is there any way to see which route matched a request from the browser in Rails? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T08:41:54Zhttp://stackoverflow.com/feeds/question/811314http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/811314/is-there-any-way-to-see-which-route-matched-a-request-from-the-browser-in-rails2is there any way to see which route matched a request from the browser in Rails?Geo2009-05-01T13:21:12Z2009-05-01T13:32:27Z
<p>In my <b>routes.rb</b> file I have a number of routes. I would like to know which one got matched for any request a user may have made. </p>
<p>For example, in routes.rb you have the following routes :</p>
<pre>
map.connect ":controller/:action"
map.connect ":controler/:action/:id"
</pre>
<p>and if I have a controller named <b>a</b> and an action named <b>first</b>, when a user goes to <b>http://whatever/a/first</b> , I would like to see that the <b>:controller/:action</b> route was picked.</p>
<p>Can I do that for any request?</p>
http://stackoverflow.com/questions/811314/is-there-any-way-to-see-which-route-matched-a-request-from-the-browser-in-rails/811347#8113471Answer by Geo for is there any way to see which route matched a request from the browser in Rails?Geo2009-05-01T13:31:55Z2009-05-01T13:31:55Z<p>The closest thing I could find was in the log files. You will see for each request which action of which controller matched.
You will see something like this :</p>
<pre>
Parameters: {"action"=>"show", "id"=>"2", "controller"=>"mycontroller"}
</pre>
<p>From there, it should be easy,right?</p>
http://stackoverflow.com/questions/811314/is-there-any-way-to-see-which-route-matched-a-request-from-the-browser-in-rails/811351#8113512Answer by kch for is there any way to see which route matched a request from the browser in Rails?kch2009-05-01T13:32:27Z2009-05-01T13:32:27Z<p>If you just want to know which controller/action you're in, the controller provides <code>controller_name</code> and <code>action_name</code> methods. So you might do something like this:</p>
<pre><code># in application_controller.rb
before_filter :set_where_am_i
def set_where_am_i
@where_am_i = "#{controller_name}/#{action_name}"
end
# in views/layouts/application.erb, somewhere in your html
# (here I choose the <title>)
<head><title>Here: <%= @where_am_i %></title>
</code></pre>