A project management app derived from Mind-Vision-Code
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

25 linhas
697B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <defaultDocument>
  5. <files>
  6. <clear />
  7. <add value="index.php" />
  8. </files>
  9. </defaultDocument>
  10. <rewrite>
  11. <rules>
  12. <rule name="Front Controller" stopProcessing="true">
  13. <match url=".*" />
  14. <conditions logicalGrouping="MatchAll">
  15. <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
  16. <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  17. </conditions>
  18. <action type="Rewrite" url="index.php" />
  19. </rule>
  20. </rules>
  21. </rewrite>
  22. </system.webServer>
  23. </configuration>

Powered by TurnKey Linux.