summaryrefslogtreecommitdiff
path: root/web.config
diff options
context:
space:
mode:
Diffstat (limited to 'web.config')
-rw-r--r--web.config3
1 files changed, 3 insertions, 0 deletions
diff --git a/web.config b/web.config
index 34afd0a46..09983d925 100644
--- a/web.config
+++ b/web.config
@@ -12,6 +12,9 @@
<rule name="Force simple error message for requests for non-existent favicon.ico" stopProcessing="true">
<match url="favicon\.ico" />
<action type="CustomResponse" statusCode="404" subStatusCode="1" statusReason="File Not Found" statusDescription="The requested file favicon.ico was not found" />
+ <conditions>
+ <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
+ </conditions>
</rule>
<!-- Rewrite URLs of the form 'x' to the form 'index.php?q=x'. -->
<rule name="Short URLs" stopProcessing="true">