Skip to content

Instantly share code, notes, and snippets.

@michitheonlyone
Last active December 6, 2022 11:06
Show Gist options
  • Save michitheonlyone/dbceaf2903cdd86999a1ca60235abeba to your computer and use it in GitHub Desktop.
Save michitheonlyone/dbceaf2903cdd86999a1ca60235abeba to your computer and use it in GitHub Desktop.
IIS web.config for Symfony and other webapps. RewriteRule to index.php
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment