我在铁路工作。我创建了一个上传的xml文件,当我使用此URL访问它时,它正在工作:
http:://localhost:3000/abc.xml
但我想将请求重定向到另一个网址:
http:://localhost:3000/xyz
我的路由文件中的代码,但它无法正常工作。
get '/abc.xml', to: redirect('/xyz')
Rails -v
3.2.1
答案 0 :(得分:0)
试试这个
Rails 3
match "/abc.xml" => redirect("/xyz")
Rails 4
get '/abc', to: redirect('/xyz')