This information is useful when you have multiple domains pointing to your IP and you want to redirect to the proper page according to domain name. The following ASP Script shows a simple way to redirect based on the domain name: Dim HTTPHost HTTPHost = Request.ServerVariables("HTTP_HOST") If InStr(HTTPHost, "yourdomain.com") Then Response.ReDirect "http://yourdomain1.com/folder1" If InStr(HTTPHost, "www.yourdomain2.com") Then Response.ReDirect "http://yourdomain2.com/folder2" You can place this script as your default.asp and place your web content in sub-webs or subdirectories.Article ID: 62, Created On: 5/26/2009, Modified: 5/27/2009