Hybrid hosting with a single domain is possible? [closed]

0

I have a client that has a PHP site, but the developer told him that he could not do the database with his system. He asked me to make a system for him that had a CRUD as a client. Since he has a contract with the company that developed his site, there's no way I can manage his website. It uses UolHost to host your site, its platform is in Linux, but I have seen that it is possible to switch to Windows, which has ASP.Net support.

Can I host my system in ASP.Net MVC, along with its website made in PHP and use the same domain?

    
asked by anonymous 23.12.2016 / 03:11

1 answer

4

Domains are not tied to technologies, they are just names that lead to an IP address. So we can already conclude that there is no problem.

Here comes the question of putting two different technologies on the same IP.

An IP can only be on one device, so we have to know if it is possible to have both technologies on the same server. And the answer is yes, it can be in both Windows and Linux.

Windows supports ASP.Net MVC and PHP running on the same site, there is no specific technical restriction on using both. Generally people use IIS for this, but nothing prevents it from using Apache, although their hosting probably does not offer this.

Linux is also possible to run both. ASP.Net MVC can run through Mono or .Net Core , which should be more advantageous nowadays, but do not know how these two solutions work in your hosting. They may not work.

So it runs, but your hosting may not be ready. What's more, there may be conflicts between the two parties. Not by technology, but how the plication was developed. These things we can not answer.

    
24.12.2016 / 13:54