Please or Register to create posts and topics.

IIS 7 Redirect home page to another page on the website - IIS 7 redirection of the home page

Sometimes you may need to redirect the OfficeClip Login Page to a custom page that you created. You can setup a redirection rule in the IIS to achieve this. For example if you want to change the default.aspx to systemtest.aspx you can do it by changing the location path on web.config file.

Code:

<location path="default.aspx">
        <system.webServer>
            <httpRedirect enabled="true" destination="https://localhost/ocwap/systemtest.aspx" />
        </system.webServer>
    </location>