aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/web.config
diff options
context:
space:
mode:
Diffstat (limited to 'public/web.config')
-rw-r--r--public/web.config23
1 files changed, 0 insertions, 23 deletions
diff --git a/public/web.config b/public/web.config
deleted file mode 100644
index 624c176..0000000
--- a/public/web.config
+++ /dev/null
@@ -1,23 +0,0 @@
-<configuration>
- <system.webServer>
- <rewrite>
- <rules>
- <rule name="Imported Rule 1" stopProcessing="true">
- <match url="^(.*)/$" ignoreCase="false" />
- <conditions>
- <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
- </conditions>
- <action type="Redirect" redirectType="Permanent" url="/{R:1}" />
- </rule>
- <rule name="Imported Rule 2" stopProcessing="true">
- <match url="^" ignoreCase="false" />
- <conditions>
- <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
- <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
- </conditions>
- <action type="Rewrite" url="index.php" />
- </rule>
- </rules>
- </rewrite>
- </system.webServer>
-</configuration>