I already got a MAX Plan with one domain live for it. I have purchased another domain and want to add that to my existing Max Plan. Can someone tell me how I do this please.
You will have to add your URL as a domain pointer: https://cp.Winhost.com/sites/domainpointer.aspx Create a domain pointer and ensure your domain is pointed to the IP for your hosting account for your domain to correctly resolve. See the following: https://support.Winhost.com/KB/a696/details-on-domain-pointer-service.aspx
Thanks for the reply. Actually pointer just pointing another domain to my already existing site. Its like domain alias which I don't want. I want both domains to target different contents or projects but share same plan and space. If I can not do this that means I need to buy another plan for that domain? Why max plan has unlimited domain?
You can use the domain pointer to point the domain and then with your code you can redirect the domain to a subfolder with separate content/projects.
Thanks. I did what you said. Created 2 folders at the root and moved my root project files in one of the folder with Bin and Web.Config. This is giving me virtual directory error. Root has index.asp with the following code. <% If InStr( UCase(Request.ServerVariables("SERVER_NAME")), UCase("www.abc.net") ) > 0 Then Response.Redirect("/abc") ElseIf InStr( UCase(Request.ServerVariables("SERVER_NAME")), UCase("www.xyz.net") ) > 0 Then Response.Redirect("/xyz") End If %>