Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3.  
  4.  
  5. <system.webServer>
  6. <rewrite>
  7. <rules>
  8.  
  9. <rule name="Rewrite signature" stopProcessing="true">
  10. <match url="^signature/([0-9a-z.:]+)" />
  11. <action type="Rewrite" url="signature.php?user={R:1}" />
  12. </rule>
  13.  
  14.  
  15. <rule name="Imported Rule 1">
  16. <match url="^(.*)" ignoreCase="false" />
  17. <conditions logicalGrouping="MatchAll">
  18. <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
  19. <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
  20. </conditions>
  21. <action type="Rewrite" url="index.php?page={R:1}" />
  22. </rule>
  23.  
  24.  
  25.  
  26.  
  27.  
  28. </rules>
  29. </rewrite>
  30. <defaultDocument enabled="true">
  31. <files>
  32. <remove value="index.html" />
  33. <remove value="iisstart.htm" />
  34. <remove value="default.aspx" />
  35. <remove value="Default.asp" />
  36. <remove value="Default.htm" />
  37. <remove value="index.htm" />
  38. <add value="index.php" />
  39. </files>
  40. </defaultDocument>
  41. </system.webServer>
  42. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement