Created
November 5, 2012 22:31
-
-
Save sandrinodimattia/4020840 to your computer and use it in GitHub Desktop.
Application Initialization Splash Screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<rewrite> | |
<rules> | |
<rule name="Home Page-Expanded" stopProcessing="true"> | |
<match url="default.aspx" /> | |
<conditions> | |
<add input="{APP_WARMING_UP}" pattern="1" /> | |
</conditions> | |
<action type="Rewrite" url="Startup.htm" /> | |
</rule> | |
<rule name="Home Page-Short" stopProcessing="true"> | |
<match url="^$" /> | |
<conditions> | |
<add input="{APP_WARMING_UP}" pattern="1" /> | |
</conditions> | |
<action type="Rewrite" url="Startup.htm" /> | |
</rule> | |
<rule name="All Other Requests"> | |
<match url=".*" /> | |
<conditions> | |
<add input="{APP_WARMING_UP}" pattern="1" /> | |
</conditions> | |
<serverVariables> | |
<set name="SKIP_MANAGED_MODULES" value="0" /> | |
</serverVariables> | |
<action type="Rewrite" url="{URL}" /> | |
</rule> | |
</rules> | |
</rewrite> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment