Forum breadcrumbs - You are here:OfficeClip ForumsCustomer Corner: Good Practices (How To's)IIS 7 Redirect home page to anoth …
IIS 7 Redirect home page to another page on the website - IIS 7 redirection of the home page
SK Dutta@skdutta
207 Posts
#1 · February 28, 2019, 2:45 pm
Quote from SK Dutta on February 28, 2019, 2:45 pmSometimes 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>
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>
Click for thumbs down.0Click for thumbs up.0
