Skip to content

Instantly share code, notes, and snippets.

@SamWM
Created May 7, 2010 11:56
Show Gist options
  • Save SamWM/393325 to your computer and use it in GitHub Desktop.
Save SamWM/393325 to your computer and use it in GitHub Desktop.
Get-Simple CMS web.config for IIS 7
<?xml version="1.0"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="getsimple">
<match url="/?([A-Za-z0-9-]+)/?$"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php?id={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