Advertisement
Guest User

Untitled

a guest
Aug 29th, 2014
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <configuration>
  2. <system.webServer>
  3. <rewrite>
  4. <rules>
  5. <rule name="QueryStringDynamicRewrite" stopProcessing="true">
  6. <match url="^(.*)$" ignoreCase="false" />
  7. <conditions>
  8. <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
  9. <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
  10. <add input="{REQUEST_URI}" pattern="^/(user/inc)" ignoreCase="false" negate="true" />
  11. </conditions>
  12. <action type="Rewrite" url="user/shop.php?sid={R:1}" appendQueryString="true" />
  13. </rule>
  14. </rules>
  15. </rewrite>
  16. </system.webServer>
  17. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement