Advertisement
Guest User

Untitled

a guest
Jun 28th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <rewrite>
  2. <rules>
  3. <rule name="Imported Rule 1" stopProcessing="true">
  4. <match url="^_images/([0-9a-f]{2})([0-9a-f]{30}).*$" ignoreCase="false" />
  5. <action type="Rewrite" url="images/{R:1}/{R:1}{R:2}" />
  6. </rule>
  7. <rule name="Imported Rule 2" stopProcessing="true">
  8. <match url="^_thumbs/([0-9a-f]{2})([0-9a-f]{30}).*$" ignoreCase="false" />
  9. <action type="Rewrite" url="thumbs/{R:1}/{R:1}{R:2}" />
  10. </rule>
  11. <rule name="Imported Rule 3" stopProcessing="true">
  12. <match url="^(.*)$" ignoreCase="false" />
  13. <conditions logicalGrouping="MatchAll">
  14. <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
  15. </conditions>
  16. <action type="Rewrite" url="index.php?q={R:1}&amp;{QUERY_STRING}" appendQueryString="false" />
  17. </rule>
  18. </rules>
  19. </rewrite>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement