I’m having some problems when the user wants to move to action games between domains.
Organized at the local version of this:
mysite.com/subdomain1/webpage/show?url=about
mysite.com/subdomain2/webpage/show?url=about
Globally:
subdomain1.mysite.com/webpage/show?url=about
subdomain2.mysite.com/webpage/show?url=about
I want to make the user does not enter the main subdomain every time.
For example:
Current page – subdomain1.mysite.com/webpage/show?url=about.
I want to see into subdomain2 similar page.
I redirected user to subdomain2.mysite.com/.
But i want to redirect user – subdomain2.mysite.com/webpage/show?url=about
without transition at subdomain2.mysite.com
How can do it in ASP MVC and C#?
Sorry if i distract you and spend your time – I myself found the solution.