A project management app derived from Mind-Vision-Code
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

25 rindas
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.