Ask A Question

Notifications

You’re not receiving notifications from this thread.

Rails routes.rb (routing with :as or :path)

Hugo A. Gallotto asked in Rails

Hi.

I'm using Rails 2.3.16 and Ruby 1.8.7

I have the next routing:

map.namespace :controller1 do |c1|
c1.resources :controller2, :member => { :action1 => :get, :action2 => :get }
end

Now, I access with the url:

domain/controller1/controller2/action1/:id

I need acces action1 with url

domain/:id

I tried many ways but I can't.

How can I do this with the rails routing?

Can I get the action1 with the two ways?

https://stackoverflow.com/questions/47077630/rails-routes-rb-routing-with-as-or-path

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 82,464+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.