What is the best way to create a "module alias"? I'd like to map `/my-module-alias/controller/action` to `/module/controller/action`, and vice versa (when assembling URLs for a specific module/controller/action), where `my-module-alias` can be any valid name I configure. All other routes still behave as "normal" (using Zend_Controller_Router_Route_Module).
Examples:
- `/alias1/index/index` maps to the aliased module users, controller index, action index.
- `/archive/index/index` just maps to module archive, controller index, action index.
- `$route->assemble(array('module' => 'users', 'controller' => 'index', action => 'index'));` would return `/alias1/index/index`
Reinier

