Changing Your Application’s Virtual Directory Alias

If you pick an alias different than the Application Name, you will need to change your application’s Web.config file to reflect the virtual directory alias.  For example, the Web.config file segment below references the AcmeOMS folder.  This folder must be changed to match any alternative alias you select.

    <add key="DefaultPageUrl" value="/AcmeOMS/Categories/ShowCategoriesTable.aspx" />

    <add key="ErrorPageUrl" value="/AcmeOMS/Shared/Show_Error.aspx" />

    <add key="ForbiddenPageUrl" value="/AcmeOMS/Shared/Forbidden.aspx" />

    <add key="SignInPageUrl" value="/AcmeOMS/Shared/SignIn.aspx" />

    <add key="SignedOutPageUrl" value="/AcmeOMS/Shared/SignOut.aspx" />

See Also

Creating a Virtual Directory for Your Application

Deploying Applications to a Production Server