Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <configuration>
- <system.webServer>
- <rewrite>
- <rules>
- <clear></clear>
- <rule name="Redirect to specific directory">
- <match url="(.*)"/>
- <conditions >
- <add input="{PATH_INFO}" pattern="^(.*/)(.*)" />
- <add input="{REQUEST_FILENAME}" pattern="(.*?)\.(jpg|ico|gif|js|png|htm|css|html|htm|aspx)$" negate="true" />
- </conditions>
- <action type="Rewrite" url="{R:1}{C:2}/"/>
- </rule>
- </rules>
- </rewrite>
- </system.webServer>
- </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement