my application will have a subdomain per customer to show their logo and some other stuff:\[code\]company1.service.comcompany2.service.com\[/code\]I'm trying to see what's the best way to work during development:[*]configure the development machine HOST file to do some mapping, so I can access company1.localhost etc.[*]Use some kind of secret config flag which the app will check to determine what is the overriden domain[*]Do not use subdomains at all (even on production) and prefer query stringI think #1 should be ok for me just trying to see if anyone has bad experience with it or good with the other options.