Skip to content

Instantly share code, notes, and snippets.

@StuMx
Created August 22, 2014 18:37
Show Gist options
  • Save StuMx/50452e035bfff3601202 to your computer and use it in GitHub Desktop.
Save StuMx/50452e035bfff3601202 to your computer and use it in GitHub Desktop.
Redirigir a index.php en IIS
<rule name="Redirigir a index.php" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" ignoreCase="true" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" appendQueryString="true" />
</rule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment