我必须将旧的Flash库集成到我的网站中。不幸的是,swf文件将xml硬编码为/gallery.xml
,我的控制器正在/attachments.xml
生成它的xml文件。我可以让attachments
资源回复/gallery.xml
,并保持正常的附件路线吗?
答案 0 :(得分:1)
您可以为该
添加非资源的常规路线resources :attachments # I guess this is what you already have
get "/gallery(.:format)" => "attachments#index"
没有理由不应该沿着足智多谋的路线工作。