對抗垃圾信!請您點這裡:

我的E-mail:
我的Skype:My status

2006年8月21日

如何進去網站後就轉到指定的Controller?

嗯.. 關於這點..
呵~cookoo大哥先在這邊謝過拉XD
雖然你忘記要作最後一個動作...

ok...

  1. edit config/routes.rb
  2. add map.connect '', :controller => "ctrl_name"
  3. save it and remove or rename public/index.html
cookoo大哥忘記說哪一點呢?
沒錯...
第三點="=

害我昨天測試了老半天阿阿阿阿阿阿阿阿阿!!!!!!!

2 則留言:

匿名 提到...

還有一個更完善的方法:

建立一個static controller

並在routes.rb內,加入:

# Static pages route
# This should have lower priority then the default route
map.connect ':action', :controller => 'static'

這樣一來,:controller => '' 的 URL 就會被redirect到 static/index 還可以加一些不需要用controller包著的action, 例如 http://www.example.com/termsofuse 就會被route 到 static/termsofuse了

CFC 提到...

還有這樣一個方法阿.. 謝謝:)