我得到了这条路线
scope '/:slug' do
get '/', to: 'sites#home', as: :site
get '/:resource/:id', to: 'sites#resource', as: :resource
get '/:id', to: 'sites#page', as: :page
end
它与我的websocket默认路由冲突。如果我删除上面的代码,websocket开始工作正常。
如果网址以ws://
开头或以/websocket
我该怎么做?