If you have https://venio.acme.net/VenioWeb and want everything to work even if the user goes to https://venio.acme.net instead of the ugly default IIS page, follow this guide to redirect the root directory of a subdomain directly to the Venio OnDemand login.
First, confirm that a "default.aspx" file has been created correctly at the root level of your website (e.g., C:\inetpub\wwwroot\default.aspx). Open the file and ensure that it contains the following code:
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
Response.Redirect("/VenioWeb");
}
</script>
Once the code is correct, ensure the file extension is ".aspx" and not ".asp" or any other extension.
Open IIS Manager and navigate to the "Default Web Site".
In the Features View, double-click on "Default Document".
Ensure that "default.aspx" is listed as the first default document in the list. If it's not present, add it and move it to the top of the list.
Restart the application pool:
Right-click on the application pool and select "Recycle".
Test the redirection