Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4.  
  5. <rewrite>
  6. <rules>
  7. <rule name="Imported Rule 1-9">
  8. <match url="^habbo-imaging4/badge/([^/]+)" ignoreCase="false" />
  9. <action type="Rewrite" url="/habbo-imaging4/badge.php?badge={R:1}" appendQueryString="false" />
  10. </rule>
  11. <rule name="Imported Rule 1-4">
  12. <match url="^habbo-imaging4/badge/([^/]+)" ignoreCase="false" />
  13. <action type="Rewrite" url="/habbo-imaging4/badge.php?badge={R:1}" appendQueryString="false" />
  14. </rule>
  15. <rule name="Regola importata 19">
  16. <match url="^habbo-imaging/avatarimage" ignoreCase="false" />
  17. <action type="Rewrite" url="/habbo-imaging4/look.php" />
  18. </rule>
  19. <rule name="Regola importata 18">
  20. <match url="^habbo-imaging/avatarimage.php" ignoreCase="false" />
  21. <action type="Rewrite" url="/habbo-imaging4/look.php" />
  22. </rule>
  23. <rule name="MVC" 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?p={R:1}" appendQueryString="false" />
  30. </rule>
  31. <rule name="RewriteUserFriendlyURL1" stopProcessing="true">
  32. <match url="^goto$" />
  33. <conditions>
  34. <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
  35. <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  36. </conditions>
  37. <action type="Rewrite" url="goto.php" />
  38. </rule>
  39.  
  40. </rules>
  41. </rewrite>
  42.  
  43. <defaultDocument>
  44. <files>
  45. <clear />
  46. <add value="index.php" />
  47. <add value="Default.htm" />
  48. <add value="Default.asp" />
  49. <add value="index.htm" />
  50. <add value="index.html" />
  51. <add value="iisstart.htm" />
  52. <add value="default.aspx" />
  53. </files>
  54. </defaultDocument>
  55.  
  56. </system.webServer>
  57. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement