Skip to content

Instantly share code, notes, and snippets.

@jprieton
Last active August 29, 2015 14:05
Show Gist options
  • Save jprieton/c20a28d03af55a882d19 to your computer and use it in GitHub Desktop.
Save jprieton/c20a28d03af55a882d19 to your computer and use it in GitHub Desktop.
timthumb_webconfig
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="false" />
<rewrite>
<rules>
<rule name="TimThumb" stopProcessing="true">
<match url="\.(jpg|jpeg|gif|png)$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="false" />
<add input="{QUERY_STRING}" pattern="w=([1-9])" />
</conditions>
<action type="Rewrite" url="path/to/timthumb.php?src={URL}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment