<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: SEO Search Engine Friendly URLs with ASP.NET and IIS</title>
	<atom:link href="http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/</link>
	<description>NJ SEO, Web Design, Programming and Online Marketing Consultant</description>
	<lastBuildDate>Tue, 30 Aug 2011 20:57:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Site Tool</title>
		<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/comment-page-1/#comment-20989</link>
		<dc:creator>Site Tool</dc:creator>
		<pubDate>Fri, 04 Sep 2009 11:20:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.barrywise.com/?p=372#comment-20989</guid>
		<description>That&#039;s great, I never thought about SEO Search Engine Friendly URLs with ASP.NET and IIS like that before.</description>
		<content:encoded><![CDATA[<p>That&#8217;s great, I never thought about SEO Search Engine Friendly URLs with ASP.NET and IIS like that before.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/comment-page-1/#comment-8584</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sun, 29 Mar 2009 15:39:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.barrywise.com/?p=372#comment-8584</guid>
		<description>SEF URLS is uber important for seo!</description>
		<content:encoded><![CDATA[<p>SEF URLS is uber important for seo!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barry Wise</title>
		<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/comment-page-1/#comment-1564</link>
		<dc:creator>Barry Wise</dc:creator>
		<pubDate>Sun, 16 Nov 2008 12:33:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.barrywise.com/?p=372#comment-1564</guid>
		<description>@Bitstar - Ah yes, I can remember IIS modules since the adys of classic ASP and ISAPI.  But I wanted something easier and simpler to work with; hence this version.</description>
		<content:encoded><![CDATA[<p>@Bitstar &#8211; Ah yes, I can remember IIS modules since the adys of classic ASP and ISAPI.  But I wanted something easier and simpler to work with; hence this version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BitStar Software</title>
		<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/comment-page-1/#comment-1556</link>
		<dc:creator>BitStar Software</dc:creator>
		<pubDate>Sun, 16 Nov 2008 08:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.barrywise.com/?p=372#comment-1556</guid>
		<description>The best solution for this is to write a rewrite module for IIS. The global.asax solutions has some big disadvantages in terms of speed and cpu cost.

I suggenst you create a http module and link it in web.config:

public class LangRewrite : IHttpModule
    {        
        public void Init(System.Web.HttpApplication Appl)
        {
            //make sure to wire up to BeginRequest
            Appl.BeginRequest += new System.EventHandler(Rewrite_BeginRequest);
        }       

        
        public void Dispose()
        {            
        }

        
        public void Rewrite_BeginRequest(object sender, System.EventArgs args)
        {
            // here you can play with your request in any way you need and when you are done use HttpContext.Current.RewritePath(url) to rewrite the path internaly.
        }
}

Then in web.config in httpmodules section add:
     

Hope this helped</description>
		<content:encoded><![CDATA[<p>The best solution for this is to write a rewrite module for IIS. The global.asax solutions has some big disadvantages in terms of speed and cpu cost.</p>
<p>I suggenst you create a http module and link it in web.config:</p>
<p>public class LangRewrite : IHttpModule<br />
    {<br />
        public void Init(System.Web.HttpApplication Appl)<br />
        {<br />
            //make sure to wire up to BeginRequest<br />
            Appl.BeginRequest += new System.EventHandler(Rewrite_BeginRequest);<br />
        }       </p>
<p>        public void Dispose()<br />
        {<br />
        }</p>
<p>        public void Rewrite_BeginRequest(object sender, System.EventArgs args)<br />
        {<br />
            // here you can play with your request in any way you need and when you are done use HttpContext.Current.RewritePath(url) to rewrite the path internaly.<br />
        }<br />
}</p>
<p>Then in web.config in httpmodules section add:</p>
<p>Hope this helped</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barry Wise</title>
		<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/comment-page-1/#comment-1446</link>
		<dc:creator>Barry Wise</dc:creator>
		<pubDate>Fri, 14 Nov 2008 12:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.barrywise.com/?p=372#comment-1446</guid>
		<description>@Stu - That&#039;s right, it is selfish ... spread the love around!</description>
		<content:encoded><![CDATA[<p>@Stu &#8211; That&#8217;s right, it is selfish &#8230; spread the love around!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stu</title>
		<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/comment-page-1/#comment-1431</link>
		<dc:creator>Stu</dc:creator>
		<pubDate>Thu, 13 Nov 2008 22:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.barrywise.com/?p=372#comment-1431</guid>
		<description>I don&#039;t get the whole Nofollow thing - I mean, people  want others to comment on their blog, giving them content, but they&#039;re not prepared to give the commenter something in return. Seems a bit selfish to me</description>
		<content:encoded><![CDATA[<p>I don&#8217;t get the whole Nofollow thing &#8211; I mean, people  want others to comment on their blog, giving them content, but they&#8217;re not prepared to give the commenter something in return. Seems a bit selfish to me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ASP.Net Programmer</title>
		<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/comment-page-1/#comment-1354</link>
		<dc:creator>ASP.Net Programmer</dc:creator>
		<pubDate>Tue, 11 Nov 2008 00:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.barrywise.com/?p=372#comment-1354</guid>
		<description>Thanks for this post.  I&#039;ve been using URL rewriting for three years and install a similar module to your on all my dynamic site.

One point to note... ASP.Net Ajax doesn&#039;t like URL rewriting on .Net 2.0.  If AJAX is needed on a .Net 2.0 site, you&#039;ll need to write a custom HtmlTextWriter class to format the FORM action attribute appropriately.  I imagine that these issues disappear with .Net 3.5 and IIS 7 with the built-in rewriting module and form.action, though I haven&#039;t tested it extensively.</description>
		<content:encoded><![CDATA[<p>Thanks for this post.  I&#8217;ve been using URL rewriting for three years and install a similar module to your on all my dynamic site.</p>
<p>One point to note&#8230; ASP.Net Ajax doesn&#8217;t like URL rewriting on .Net 2.0.  If AJAX is needed on a .Net 2.0 site, you&#8217;ll need to write a custom HtmlTextWriter class to format the FORM action attribute appropriately.  I imagine that these issues disappear with .Net 3.5 and IIS 7 with the built-in rewriting module and form.action, though I haven&#8217;t tested it extensively.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Talk</title>
		<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/comment-page-1/#comment-1332</link>
		<dc:creator>Web Talk</dc:creator>
		<pubDate>Sat, 08 Nov 2008 17:13:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.barrywise.com/?p=372#comment-1332</guid>
		<description>I would like to reminding, as a side note, that you guys are talking about &quot;search engines&quot; when instead you should talk about Google! In fact, just to cite an example, Yahoo doesn&#039;t even care about the Nofollow tag, Google does and that&#039;s why people are all talking about this in the Internet. As far as URLs are concerned I am not sure if the way they are made really matters to other seach engines such as Yahoo.com and Ask.com.</description>
		<content:encoded><![CDATA[<p>I would like to reminding, as a side note, that you guys are talking about &#8220;search engines&#8221; when instead you should talk about Google! In fact, just to cite an example, Yahoo doesn&#8217;t even care about the Nofollow tag, Google does and that&#8217;s why people are all talking about this in the Internet. As far as URLs are concerned I am not sure if the way they are made really matters to other seach engines such as Yahoo.com and Ask.com.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maneet Puri</title>
		<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/comment-page-1/#comment-1288</link>
		<dc:creator>Maneet Puri</dc:creator>
		<pubDate>Wed, 05 Nov 2008 07:42:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.barrywise.com/?p=372#comment-1288</guid>
		<description>Hey.. Thats a neat one! URLs make a whole lot of difference to the attitude of search engines. Thanks for these pearls of wisdom!</description>
		<content:encoded><![CDATA[<p>Hey.. Thats a neat one! URLs make a whole lot of difference to the attitude of search engines. Thanks for these pearls of wisdom!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://www.barrywise.com/2008/11/seo-search-engine-friendly-urls-with-aspnet-and-iis/comment-page-1/#comment-1284</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 04 Nov 2008 23:21:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.barrywise.com/?p=372#comment-1284</guid>
		<description>Hey guys i&#039;m looking for feedback on an SEO Tool I&#039;ve been working on, http://spydermate.com any tips or feedback would be appreciated.</description>
		<content:encoded><![CDATA[<p>Hey guys i&#8217;m looking for feedback on an SEO Tool I&#8217;ve been working on, <a href="http://spydermate.com">http://spydermate.com</a> any tips or feedback would be appreciated.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

