Hi there, do you guys have an elegant solution for routing subdomain to the module / controller? Currently I have a virtual host that handle wildcard subdomain into one phalcon multi module project. A subdomain can route to specific module (e.g. m.domain.com routes to mobile module) or to a specific controller. My current solution is prepending the $_GET['_url'] with the subdomain and add a route for that. For example _url for https://m.domain.com/xxx/yyy is rewrited to /m/xxx/yyy and add a routing rule for /m/:controller/:action. But I think it would cause a duplicate content and I have to implement my own Phalcon\Mvc\Url and Tag::linkTo to generate a subdomain link. Any enlightment here please :)