1 <?xml version="1.0" encoding="UTF-8"?>
4 <!-- Don't show directory listings for URLs which map to a directory. -->
5 <directoryBrowse enabled="false" />
8 <rule name="Protect files and directories from prying eyes" stopProcessing="true">
9 <match url="\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(\..*|Entries.*|Repository|Root|Tag|Template)$" />
10 <action type="CustomResponse" statusCode="403" subStatusCode="0" statusReason="Forbidden" statusDescription="Access is forbidden." />
12 <rule name="Force simple error message for requests for non-existent favicon.ico" stopProcessing="true">
13 <match url="favicon\.ico" />
14 <action type="CustomResponse" statusCode="404" subStatusCode="1" statusReason="File Not Found" statusDescription="The requested file favicon.ico was not found" />
16 <!-- Rewrite URLs of the form 'x' to the form 'index.php?q=x'. -->
17 <rule name="Short URLs" stopProcessing="true">
18 <match url="^(.*)$" ignoreCase="false" />
20 <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
21 <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
22 <add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" />
24 <action type="Rewrite" url="index.php?q={R:1}" appendQueryString="true" />
30 <remove statusCode="404" subStatusCode="-1" />
31 <error statusCode="404" prefixLanguageFilePath="" path="/index.php" responseMode="ExecuteURL" />
35 <!-- Set the default document -->
37 <remove value="index.php" />
38 <add value="index.php" />