Skip to content

Instantly share code, notes, and snippets.

@tyt2y3
Created May 27, 2018 14:10
Show Gist options
  • Save tyt2y3/331f3f823f7e875d3818fd1d06678614 to your computer and use it in GitHub Desktop.
Save tyt2y3/331f3f823f7e875d3818fd1d06678614 to your computer and use it in GitHub Desktop.
IIS configuration for Yii2
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="web" enabled="true">
<match url="^(.*)" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:0}" />
</rule>
</rules>
</rewrite>
<directoryBrowse enabled="false" />
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment