将临时URL路由到控制器和操作

时间:2011-09-02 03:10:07

标签: ruby-on-rails ruby ruby-on-rails-3 routes

我正在部署rails应用程序。目前我有一个临时URL。有人可以指导我如何将此路由到我的控制器和操作吗?

临时网址为http://50.22.41.167/~aromaper/

我尝试过这样的事情,但它无法正常工作:

match "~aromaper" , :to => 'front#index'

以下是来自production.log文件的错误消息:

Started GET "/~aromaper/" for 223.29.232.108 at 2011-09-01 22:03:11
-0500   Processing by ContentController#show as HTML   Parameters: {"path"=>"~aromaper"} Completed 500 Internal Server Error in 2ms Rendered public/404.html (0.0ms)

任何帮助都将受到高度赞赏。

1 个答案:

答案 0 :(得分:0)

我所要做的就是制作这样的路线:

match "/" , :to => "front#index"

像魅力一样工作。