Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RajeshPatadiya/f25b76181d5e001b34bb4c856e62b1a6 to your computer and use it in GitHub Desktop.
Save RajeshPatadiya/f25b76181d5e001b34bb4c856e62b1a6 to your computer and use it in GitHub Desktop.
IIS web.config for codeigniter
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Index">
<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: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