How to use subdomains with localhost on IISExpress?
This can be accomplished by editing the applicationHost.config file C:\Users\yourProfile\Documents\IISExpress\config\applicationHost.config Visual Studio usually handles editing this file for you when you make configuration changes, but you can manually edit. Find the particular site you are working with and the following bindings should work: <bindings> <binding protocol=”http” bindingInformation=”*:5252:localhost” /> <binding protocol=”http” bindingInformation=”*:5252:contoso.localhost” /> </bindings> You can … Read more