<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Tip#25: Did you know... You can have canonical URLs and Redirects with IIS 7.0</title><link>http://blogs.msdn.com/webdevelopertips/archive/2008/11/20/tip-25-did-you-know-you-can-have-canonical-urls-and-redirects-with-iis-7-0.aspx</link><description>Canonical URLs help you to make your links Search Engine Optimized (SEO). For human it is easy to understand that http://www.contoso.com is same as http://contoso.com . But many search engines will not make this assumption and treat them as two separate</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>infoblog &amp;raquo; Tip#25: Did you know&amp;#8230; You can have canonical URLs and Redirects with IIS 7.0</title><link>http://blogs.msdn.com/webdevelopertips/archive/2008/11/20/tip-25-did-you-know-you-can-have-canonical-urls-and-redirects-with-iis-7-0.aspx#9127024</link><pubDate>Thu, 20 Nov 2008 05:10:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9127024</guid><dc:creator>infoblog &amp;raquo; Tip#25: Did you know&amp;#8230; You can have canonical URLs and Redirects with IIS 7.0</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://blog.a-foton.ru/index.php/2008/11/20/tip25-did-you-know-you-can-have-canonical-urls-and-redirects-with-iis-70/"&gt;http://blog.a-foton.ru/index.php/2008/11/20/tip25-did-you-know-you-can-have-canonical-urls-and-redirects-with-iis-70/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Tip#25: Did you know... You can have canonical URLs and Redirects with IIS 7.0</title><link>http://blogs.msdn.com/webdevelopertips/archive/2008/11/20/tip-25-did-you-know-you-can-have-canonical-urls-and-redirects-with-iis-7-0.aspx#9127403</link><pubDate>Thu, 20 Nov 2008 08:00:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9127403</guid><dc:creator>MisterFantastic</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;We have a application running in the HTTPS . Will this thing work in SSL . Please give me some idea.&lt;/p&gt;
&lt;p&gt;Thanks ,&lt;/p&gt;
&lt;p&gt;Thani&lt;/p&gt;
</description></item><item><title>re: Tip#25: Did you know... You can have canonical URLs and Redirects with IIS 7.0</title><link>http://blogs.msdn.com/webdevelopertips/archive/2008/11/20/tip-25-did-you-know-you-can-have-canonical-urls-and-redirects-with-iis-7-0.aspx#9129924</link><pubDate>Thu, 20 Nov 2008 21:25:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9129924</guid><dc:creator>Ruslan</dc:creator><description>&lt;p&gt;This approach can be used with HTTPS as well. For example if you have a certificate issued for domain www.contoso.com but want your site to be discoverable when users type &lt;a rel="nofollow" target="_new" href="http://contoso.com"&gt;http://contoso.com&lt;/a&gt; or &lt;a rel="nofollow" target="_new" href="http://foobar.com"&gt;http://foobar.com&lt;/a&gt; then you could have a rule that redirects to &lt;a rel="nofollow" target="_new" href="https://www.contoso.com"&gt;https://www.contoso.com&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&amp;lt;configuration&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;system.webServer&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;rewrite&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;rules&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;rule name=&amp;quot;WWW Redirect&amp;quot; stopProcessing=&amp;quot;true&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;match url=&amp;quot;.*&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;conditions logicalGrouping=”MatchAny”&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;add input=”{HTTPS}” pattern=”off” /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;add input=&amp;quot;{HTTP_HOST}&amp;quot; pattern=&amp;quot;^www\.contoso\.com$&amp;quot; negate=”true” /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/conditions&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;action type=&amp;quot;Redirect&amp;quot; url=&amp;quot;&lt;a rel="nofollow" target="_new" href="https://www.contoso.com"&gt;https://www.contoso.com&lt;/a&gt;/{R:0}&amp;quot; redirectType=&amp;quot;Permanent&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/rule&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/rules&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;/rewrite&amp;gt;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;&amp;lt;/system.webServer&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;/configuration&amp;gt;&lt;/p&gt;
</description></item><item><title>re: Tip#25: Did you know... You can have canonical URLs and Redirects with IIS 7.0</title><link>http://blogs.msdn.com/webdevelopertips/archive/2008/11/20/tip-25-did-you-know-you-can-have-canonical-urls-and-redirects-with-iis-7-0.aspx#9470325</link><pubDate>Wed, 11 Mar 2009 13:16:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9470325</guid><dc:creator>Preqin</dc:creator><description>&lt;p&gt;Any tips for doing this in IIS6?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
</description></item></channel></rss>