The route you specify can be whatever you want. If the Zend Framework matches it, it will execute the route based on the default values.
resources.router.routes.products.regex = "somethingawesome/(.*)"
resources.router.routes.products.defaults.module = "ModuleName"
resources.router.routes.products.defaults.controller = "awesome"
resources.router.routes.products.defaults.action = "cool"
The "route" above uses the regular expression for - mysite.com/somethingawesome/whatever and directs it to the module: ModuleName, the controller AwesomeController.php and runs coolAction ()
, "somethingawesome" . , URL- .