Creating Subdomains Programmatically

前端 未结 3 955
你的背包
你的背包 2021-02-02 02:05

I am looking for a solution to create subdomains programmatically in ASP.NET, ASP.NET MVC and PHP. Specifically, a user profile page should resolve for both: www.domain.co

相关标签:
3条回答
  • 2021-02-02 02:21

    Update your DNS settings of the particular domain so that *.domain.com all point to the same host.

    Then, programmatically check and see if the first part of the URL used contains the subdomain you are looking for, and act accordingly. For example, if the first part contains a given profilename, then retrieve that particular profiles collection of data from your DB and display it to the user.

    Make sure your web application uses relative links, so that if the user arrives at the site using a subdomain, that you don't redirect them elsewhere.

    0 讨论(0)
  • 2021-02-02 02:22

    There is no generic way to create subdomains. You will need to call an API provided by your ISP or DNS provider -- typically SOAP or REST.

    Either that, or use a wildcard domain (*).

    On the IIS side, be sure to configure you application so that it doesn't use Host headers.

    0 讨论(0)
  • 2021-02-02 02:40

    You could try:

    AppDomain subDomain = AppDomain.CreateDomain("ProfileUserDomain");
    

    Although you may have to configure your DNS to allow request from your code. Dynamic DNS services could be your answer.

    0 讨论(0)
提交回复
热议问题