Created
August 22, 2014 18:37
-
-
Save StuMx/50452e035bfff3601202 to your computer and use it in GitHub Desktop.
Redirigir a index.php en IIS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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