You can easily set the default page with below code, create a new file with the name of web.config

<system.webServer>
    <defaultDocument>
        <files>

            <add value="~/index.aspx"/>

        </files>
    </defaultDocument>
</system.webServer>