Anyone know how to redirect asmx? I have created sub domains and they work. If InStr(UCase(Request.ServerVariables("SERVER_NAME")), UCase("admin.mydomain.com")) > 0 Then Response.Redirect("/admin") ElseIf InStr(UCase(Request.ServerVariables("SERVER_NAME")), UCase("demo.mydomain.com")) > 0 Then Response.Redirect("/demo")...... The problem is the path with the redirect is now admin.mydomain.com/admin/webservice/myws.asmx and I have a lot of webservices looking for: admin.mydomain.com/webservice/myws.asmx Thanks,