Host Multiple Domains with the same ASP.NET MVC app?

≯℡__Kan透↙ 提交于 2019-12-19 07:27:25

问题


I want to host multiple web sites (all with different domains - not sub domains) with the same ASP.NET MVC app. I need the app to act differently based off the domain, but I still want the same app to serve all domains. I don't want domain forwarding or redirection, I actully want all the domains to function on their own, but served out of the same MVC app. How do I do this? It is also worth noting that I am in shared hosting with GoDaddy.

Thanks in advance!


回答1:


This should be possible with IIS using the host headers field in the bindings settings. You can add as many different host headers as you want for your application. And as long as that domain somehow goes to that host on that particular port (http or https or custom), then that application will be used.




回答2:


ASP.NET MVC Domain Routing demonstrates one possible way to control ASP.Net MVC application behavior based on the domain name that was used to reach your site.



来源:https://stackoverflow.com/questions/685973/host-multiple-domains-with-the-same-asp-net-mvc-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!