Yeah, Spree 2 will be great! But I don't know if it will be ready by the time that I need it... so, I'm studying how to do this, anyway. I've found a way by adding these lines to my routes.rb, before the "
mount Spree::Core::Engine, :at => '/spree'" line:
match "/spree/products" => redirect("/spree/admin")
match "/spree/products/*p" => redirect("/spree/admin")
match "/spree/checkout" => redirect("/spree/admin")
match "/spree/checkout/*p" => redirect("/spree/admin")
match "/spree/orders/*p" => redirect("/spree/admin")
match "/spree/cart" => redirect("/spree/admin")
match "/spree/cart/*p" => redirect("/spree/admin")
match "/spree/t/*p" => redirect("/spree/admin")
It works... What do you think? Makes sense?
Regards!
Tiago.