http://localhost:3000/pages/1からhttp://localhost:3000/homeへ、およびサイト内の他のすべてのページにルーティングする方法はありますか- http://localhost:3000/pages/4 http://localhost:3000/contact-usに自動的に?
私はこれを別の方法で行うことができます -
match "/home" => 'pages#show', :id => 1
match "/cars-for-sale" => 'pages#show', :id => 1
match "/contact-us" => 'pages#show', :id => 4
ただし、これを逆に、可能であれば自動的に行う必要があります。