Advertisement
Guest User

Untitled

a guest
May 27th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <security>
  5. <authentication>
  6. <anonymousAuthentication enabled="true" />
  7. </authentication>
  8. </security>
  9. <defaultDocument>
  10. <files>
  11. <clear />
  12. <add value="index.php" />
  13. <add value="default.aspx" />
  14. <add value="Default.htm" />
  15. <add value="Default.asp" />
  16. <add value="index.htm" />
  17. <add value="index.html" />
  18. </files>
  19. </defaultDocument>
  20. <handlers accessPolicy="Read, Execute, Script" />
  21. <rewrite>
  22. <rules>
  23. <rule name="Imported Rule 3" stopProcessing="true">
  24. <match url="^(.*)$" ignoreCase="false" />
  25. <conditions logicalGrouping="MatchAll">
  26. <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
  27. <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
  28. </conditions>
  29. <action type="Rewrite" url="index.php/{R:1}" />
  30. </rule>
  31. </rules>
  32. </rewrite>
  33. </system.webServer>
  34. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement