Frage

I am trying to mask a url of a show action in a controller with an id to just "sample" but it won't mask:

get '/sample' => redirect("/posts/2"), :as => '/sample'

What's wrong with the above?

War es hilfreich?

Lösung

Try : get "/sample" => "posts#show", id: 2

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top