| 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 31 32 | <?xml version="1.0" encoding="UTF-8"?> <configuration>   <system.webServer>     <directoryBrowse enabled="false" />     <defaultDocument>       <files>         <clear />         <add value="index.php" />         <add value="Default.aspx" />         <add value="Default.htm" />         <add value="Default.html" />         <add value="Default.asp" />         <add value="index.pl" />         <add value="index.htm" />         <add value="index.html" />       </files>     </defaultDocument>     <rewrite>       <rules>     <rule name="wordpress" patternSyntax="Wildcard">       <match url="*" />         <conditions>           <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />           <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />         </conditions>             <action type="Rewrite" url="index.php" />     </rule>       </rules>     </rewrite>     <httpErrors errorMode="DetailedLocalOnly" />   </system.webServer> </configuration> | 
