Skip to content

Commit

Permalink
Fix SubFolder Rewrite Rule (#6485)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmasternak committed Mar 11, 2024
1 parent 15e0b75 commit fa2b085
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions servicepulse/install-servicepulse-in-iis.md
Expand Up @@ -83,8 +83,8 @@ It is possible to host ServicePulse within a subfolder. The `web.config` contain
<rewrite>
<rules>
<rule name="Handle app.constants.js requests from AngularJs" stopProcessing="true">
<match url="^SubFolder/a/js/app.constants.js(.*)" />
<action type="Rewrite" url="/js/app.constants.js{R:1}" />
<match url="^/a/js/app.constants.js(.*)" />
<action type="Rewrite" url="/SubFolder/js/app.constants.js{R:1}" />
</rule>
</rules>
</rewrite>
Expand Down

0 comments on commit fa2b085

Please sign in to comment.