Hi,
<%
SiteNameURL = Request.ServerVariables("SERVER_NAME")
Select Case SiteNameURL
Case "forum.domain.com"
Response.Redirect "/forum"
Case Else 'redirecting everything other than cases selected above
End Select
%>
When i enter forum.domain.com, i see forum.domain.com/forum. i dont want to see folder name. i want to see only forum.domain.com. We asked our hosting company about this, they said that they dont support it. How can i do this?
Thank you.
<%
SiteNameURL = Request.ServerVariables("SERVER_NAME")
Select Case SiteNameURL
Case "forum.domain.com"
Response.Redirect "/forum"
Case Else 'redirecting everything other than cases selected above
End Select
%>
When i enter forum.domain.com, i see forum.domain.com/forum. i dont want to see folder name. i want to see only forum.domain.com. We asked our hosting company about this, they said that they dont support it. How can i do this?
Thank you.