if i use
namespace :helpcenter do
get "hh/logout"
get 'hh/login'
end
it will match the url helpcenter/hh/logout
my question is how to let these method mapping to the url /hh/logout didn't contains the module name
|
if i use
it will match the url helpcenter/hh/logout my question is how to let these method mapping to the url /hh/logout didn't contains the module name |
|||
|
You can use a scope to achieve this:
This will generate a mapping for Hope that helps. |
|||
|
|
/hh/logouttoherlpercenter_controllerorhelpercenter::hh_controllerorhh_controller? Your original case would usehelpcenter::hh_controller– PeterWong Nov 10 '10 at 2:57