Skip to content

Instantly share code, notes, and snippets.

@razuro
Created February 1, 2016 07:56
Show Gist options
  • Save razuro/38cf2a12db0a86cc3b8e to your computer and use it in GitHub Desktop.
Save razuro/38cf2a12db0a86cc3b8e to your computer and use it in GitHub Desktop.
IIS web.config for HUGE v3
<?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="IsDirectory" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="public/index.php?url={R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment