21 Mar 2018
This post is a reference to show you how to set up rewrite rules in your web.config file.
I build a lot of sites in Umbraco which is built in ASP.NET MVC and recently they changed from using the urlrewriting.config file for url rewriting to using the url rewrite rules which sit inside system.webServer in the web.config file. If you are looking for the old way of doing this in umbraco, have a look at this post.
Here are some examples for you:
<sytem.webServer>
<rewrite>
<rules>
<rule name="WWW to Non WWW" stopProcessing="true">
<match url="(.*)" ignoreCase="true" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www\.codeshare\.co\.uk" />
</conditions>
<action type="Redirect" url="https://codeshare.co.uk/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
<system.webServer>
<sytem.webServer>
<rewrite>
<rules>
<rule name="Non WWW to WWW" stopProcessing="true">
<match url="(.*)" ignoreCase="true" />
<conditions>
<add input="{HTTP_HOST}" pattern="^codeshare\.co\.uk" />
</conditions>
<action type="Redirect" url="https://www.codeshare.co.uk/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
<system.webServer>
<sytem.webServer>
<rewrite>
<rules>
<rule name="HTTP to HTTPS redirect" stopProcessing="true" >
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
<system.webServer>
<sytem.webServer>
<rewrite>
<rules>
<rule name="single url redirect" stopProcessing="true" >
<match url=".*" />
<conditions>
<add input="{URL}" pattern="/videos/bootstrap-static-site-to-umbraco-cms-part-1/" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="https://codeshare.co.uk/videos/how-to-build-a-site-with-umbraco-part-1-getting-started/" />
</rule>
</rules>
</rewrite>
<system.webServer>
<sytem.webServer>
<rewrite>
<rules>
<rule name="vacancies">
<match url=".*" />
<conditions>
<add input="{URL}" pattern="/vacancies(.*)" />
</conditions>
<action type="Redirect" redirectType="Permanent" url="https://codeshare.co.uk/careers/"/>
</rule>
</rules>
</rewrite>
<system.webServer>
Hopefully you can work with these examples and tweak them for your needs.