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?

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top