Click here to Skip to main content
Click here to Skip to main content

IIS rewrite rules that you can’t live without

By , 4 Dec 2011
 

Listed here are the most common URL rewrite rules for IIS 7 and above.

Remove Trailing Slash Rule

<rule name="Remove Trailing Slash Rule">
      <match url="(.*)/$" />
      <conditions>
        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
      </conditions>
      <action type="Redirect" redirectType="Permanent" url="{R:1}" />
</rule>

This rule will match all urls that end with a slash, remove the slash and return a redirect permanent response to the client.

Remove WWW.

<rule name="Remove WWW" stopProcessing="true">
      <match url="^(.*)$" />
      <conditions>
        <add input="{HTTP_HOST}" pattern="^(www\.)(.*)$" />
      </conditions>
      <action type="Redirect" 
        url="http://Example.com{PATH_INFO}" 
        redirectType="Permanent" />
</rule>

This rule will match all urls that start with ‘www’ and redirect to the naked domain url, while preserving any query strings in the url path. You must manualy enter you domain name in the rule.

Prevent image hotlinking

<rule name="Prevent image hotlinking">
      <match url=".*\.(gif|jpg|png)$" />
      <conditions>
        <add input="{HTTP_REFERER}" 
          pattern="^$" negate="true" />
        <add input="{HTTP_REFERER}" 
          pattern="^http://Example\.com/.*$" negate="true" />
      </conditions>
      <action type="Rewrite" 
        url="/images/say_no_to_hotlinking.jpg" />
</rule>

This rule will match urls ending with .gif, .jpg, or .png, and check the referer header for your domain name, if the request is not coming from your domain, then it will return “say_no_to_hotlinking.jpg”. Be aware regarding Google bot and other search engines that you might want to allow them to hot-link to your images.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Buaziz
Web Developer
Kuwait Kuwait
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 5 Dec 2011
Article Copyright 2011 by Buaziz
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid