我有一个在 Rails 中重建的旧 wordpress woocommerce 网站。
显然,它有一个 Product 模型和带路由的 Products 控制器。
该网站已准备好启动。
我唯一的问题是旧链接
www.mydomain.com/product/product-name
我如何重定向或更改我的
www.mydomain.com/products/product-name
我的路线文件看起来像这样
resources :products do
resource :like, only: [:create,:destroy], module: :products
resource :collect, only: [:create,:destroy], module: :products do
put :sort, on: :collection
end
member do
get :toggle_status
end
end