Guest User

Untitled

a guest
Mar 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <configuration>
  2. <system.webServer>
  3. <rewrite>
  4. <rules>
  5. <rule name="Main Rule" stopProcessing="true">
  6. <match url=".*" />
  7. <conditions logicalGrouping="MatchAll">
  8. <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
  9. <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
  10. </conditions>
  11. <action type="Rewrite" url="/" />
  12. </rule>
  13. </rules>
  14. </rewrite>
  15. </system.webServer>
  16. </configuration>
Add Comment
Please, Sign In to add comment