I have a site named Site A (ASP.NET MVC) hosted in IIS. Now I need to host a subsite B (ASP.NET Core) as a sub application of Site A.
So url would be like
- www.domain.com - site A url
- www.domain.com/siteb - site B url
Notice that both site have same domain.
I am able to achieve this by Hosting site B as sub application of Site A in IIS.
What I need is instead of hosting Site B as sub application in IIS I need to host site B in separate server. But still I want to make end user feel that it is part of A. That is above url scheme should be maintained and it should be hosted as individual application. I don't want to use a subdomain. How it can be achieved any guidance please?