is there any way to see which route matched a request from the browser in Rails? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T08:41:54Z http://stackoverflow.com/feeds/question/811314 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/811314/is-there-any-way-to-see-which-route-matched-a-request-from-the-browser-in-rails 2 is there any way to see which route matched a request from the browser in Rails? Geo 2009-05-01T13:21:12Z 2009-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#811347 1 Answer by Geo for is there any way to see which route matched a request from the browser in Rails? Geo 2009-05-01T13:31:55Z 2009-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#811351 2 Answer by kch for is there any way to see which route matched a request from the browser in Rails? kch 2009-05-01T13:32:27Z 2009-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 &lt;title&gt;) &lt;head&gt;&lt;title&gt;Here: &lt;%= @where_am_i %&gt;&lt;/title&gt; </code></pre>