forked from atosorigin/DevOpsMaturityAssessment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.config
30 lines (30 loc) · 1.02 KB
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<configuration>
<system.webServer>
<rewrite>
<rules>
<!--# Copyright 2018 Atos SE and Worldline-->
<!--# Licensed under MIT (https://github.com/atosorigin/DevOpsMaturityAssessment/blob/master/LICENSE)-->
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^$" />
<action type="Rewrite" url="about.php" />
</rule>
<rule name="Imported Rule 2" stopProcessing="true">
<match url="^section-.*$" />
<action type="Rewrite" url="collectResponses.php" />
</rule>
<rule name="Imported Rule 3" stopProcessing="true">
<match url="^results.*$" />
<action type="Rewrite" url="viewResults.php" />
</rule>
<rule name="Imported Rule 4" stopProcessing="true">
<match url="^about$" />
<action type="Rewrite" url="about.php" />
</rule>
<rule name="Imported Rule 5" stopProcessing="true">
<match url="^resources$" />
<action type="Rewrite" url="viewResources.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>