Skip to content

Commit

Permalink
Fix html rule to ignore anythign that is not extension NativeScript#946
Browse files Browse the repository at this point in the history
  • Loading branch information
etabakov committed Oct 23, 2017
1 parent bee8674 commit 5a188b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/web.config
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@
</rule>
{% endfor %}{% endfor %}
<rule name="Redirecting .html ext">
<match url="^(.*).html"/>
<match url="^(.*)\.html$"/>
<conditions logicalGrouping="MatchAny">
<add input="{URL}" pattern="(.*).html"/>
<add input="{URL}" pattern="(.*)\.html$"/>
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}"/>
</rule>
Expand Down

0 comments on commit 5a188b2

Please sign in to comment.