Are you using Symfony2? If you are and can use annotations for your routing instead of yml or xml then it's possible to have multiple routes defined along these lines:
/**
* @Route("/");
* @Route("/home");
*/
Then you don't need to duplicate the action method.