My Suggestion would be to implement a custom DefaultControllerFactory.
You can see a very good example here
The default controller factory just lists all controllers by name on a list not allowing for this kind of functionality. The article above shows you how to create a new factory and take control over the controller creation allowing you to easily match routes to specific namespace's.
That would give the functionality you are looking for.