Skip to content

Instantly share code, notes, and snippets.

@baptistedonaux
Last active December 29, 2015 17:28
Show Gist options
  • Save baptistedonaux/7703919 to your computer and use it in GitHub Desktop.
Save baptistedonaux/7703919 to your computer and use it in GitHub Desktop.
IIS URL Rewrite Rules
<rewrite>
<rules>
<rule name="Rewriter" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions>
<add input="{R:1}" pattern="^(app\\.php|favicon\\.ico)" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="./app.php/{R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment