Web.config 571 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <!--
  5. For rewrite to work install URL Rewrite Module via Web Platform Installer
  6. -->
  7. <rewrite>
  8. <rules>
  9. <rule name="Macaw" patternSyntax="Wildcard">
  10. <match url="*" />
  11. <conditions>
  12. <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
  13. <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  14. </conditions>
  15. <action type="Rewrite" url="index.php" />
  16. </rule>
  17. </rules>
  18. </rewrite>
  19. </system.webServer>
  20. </configuration>