I have a server where I am running several domains, so I redirect to folder for each. How can I determine and set the directory?
For example, I use a VBscript asp file to redirect to the folder for webs based on domain:
Select Case SiteNameURL
Case "www.domain1.com"
Response.Redirect
"web1\index1.aspx"
Case "www.domain2.com"
Response.Redirect
"web2\index2.aspx"
end select
The redirect, however, doesn't retain the path, so the next click has a path error.
How can I insure the right path?