<?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: ASP.NET 2 + url rewriting considered harmful in some cases</title>
	<atom:link href="http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/</link>
	<description>neat fun stuff</description>
	<lastBuildDate>Thu, 18 Mar 2010 06:22:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Brad</title>
		<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/#comment-110113</link>
		<dc:creator>Brad</dc:creator>
		<pubDate>Tue, 31 Jul 2007 14:54:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=326#comment-110113</guid>
		<description>Has anyone come up with a rewrite rule to be able to rewrite an arbitrary number of querystring elements?

Ex:
/sb-kw-KEYWORD-page-3-anything-anythingvalue-anything2-an ything2value-.aspx

nextsearch.aspx?keyword=KEYWORD&amp;page=3&amp;anything=anythingvalue&amp;anything2=anythingvalue2

etc

Thoughts?</description>
		<content:encoded><![CDATA[<p>Has anyone come up with a rewrite rule to be able to rewrite an arbitrary number of querystring elements?</p>
<p>Ex:<br />
/sb-kw-KEYWORD-page-3-anything-anythingvalue-anything2-an ything2value-.aspx</p>
<p>nextsearch.aspx?keyword=KEYWORD&amp;page=3&amp;anything=anythingvalue&amp;anything2=anythingvalue2</p>
<p>etc</p>
<p>Thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/#comment-108385</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Wed, 11 Jul 2007 01:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=326#comment-108385</guid>
		<description>I use IIS Rewrite for IIS. I am able to write user friendly URLs like:

&lt;a href=&quot;http://jobs.verkoops.com/items/job_industry_equal_technology_and_keyword_equal_sql_and_salary_over_75000&quot; rel=&quot;nofollow&quot;&gt;http://jobs.verkoops.com/items/job_industry_equal_technology_and_keyword_equal_sql_and_salary_over_75000&lt;/a&gt;

In a regular ASP.Net page this would have a bunch on URL parameters, but not with IIS Rewrite for IIS.</description>
		<content:encoded><![CDATA[<p>I use IIS Rewrite for IIS. I am able to write user friendly URLs like:</p>
<p><a href="http://jobs.verkoops.com/items/job_industry_equal_technology_and_keyword_equal_sql_and_salary_over_75000" rel="nofollow">http://jobs.verkoops.com/items/job_industry_equal_technology_and_keyword_equal_sql_and_salary_over_75000</a></p>
<p>In a regular ASP.Net page this would have a bunch on URL parameters, but not with IIS Rewrite for IIS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jenny W</title>
		<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/#comment-98527</link>
		<dc:creator>Jenny W</dc:creator>
		<pubDate>Sun, 04 Mar 2007 15:30:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=326#comment-98527</guid>
		<description>As usual, great article Matt!

You might like &lt;a title=&quot;Force Apache to output any HTTP Status Code with ErrorDocument&quot; href=&quot;http://www.askapache.com/2007/htaccess/apache-status-code-headers-errordocument.html&quot; rel=&quot;nofollow&quot;&gt;Force Apache to output any HTTP Status Code with ErrorDocument&lt;/a&gt;

&lt;blockquote cite=&quot;http://www.askapache.com/2007/htaccess/apache-status-code-headers-errordocument.html&quot;&gt;I setup an automated system to view all 57 Apache Response codes and ErrorDocuments, saving the headers and returned content for future reference. Use this page as a reference when designing scripts that use headers. Ex: 404 Not Found, 200 OK, 304 Not-Modified, 506 Service Temporarily Unavailable, etc.

When a Status code is encountered, Apache serves the header and the ErrorDocument for the error code. So if you can see any Header and ErrorDocument by causing that error on Apache.

For instance, if you request a file that doesn’t exist, a 404 Not Found is issued and the corresponding ErrorDocument is served with the 404 Not Found Header. So we can see what Apache 404 Errors and Response Codes look like, but how do we cause errors for the 56 other Apache Response Codes?&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>As usual, great article Matt!</p>
<p>You might like <a title="Force Apache to output any HTTP Status Code with ErrorDocument" href="http://www.askapache.com/2007/htaccess/apache-status-code-headers-errordocument.html" rel="nofollow">Force Apache to output any HTTP Status Code with ErrorDocument</a></p>
<blockquote cite="http://www.askapache.com/2007/htaccess/apache-status-code-headers-errordocument.html"><p>I setup an automated system to view all 57 Apache Response codes and ErrorDocuments, saving the headers and returned content for future reference. Use this page as a reference when designing scripts that use headers. Ex: 404 Not Found, 200 OK, 304 Not-Modified, 506 Service Temporarily Unavailable, etc.</p>
<p>When a Status code is encountered, Apache serves the header and the ErrorDocument for the error code. So if you can see any Header and ErrorDocument by causing that error on Apache.</p>
<p>For instance, if you request a file that doesn’t exist, a 404 Not Found is issued and the corresponding ErrorDocument is served with the 404 Not Found Header. So we can see what Apache 404 Errors and Response Codes look like, but how do we cause errors for the 56 other Apache Response Codes?</p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony Hook</title>
		<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/#comment-97418</link>
		<dc:creator>Anthony Hook</dc:creator>
		<pubDate>Sat, 17 Feb 2007 11:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=326#comment-97418</guid>
		<description>Hi

I am using ASP.NET 2.0, Isapi_Rewrite (Helicon).

I have a set of pages that when requested under the Isapi Filter they render then after 1 minute or so they display &quot;Internet Explorer cannot display the webpage&quot;.

The page is been rendered in what would be a .NET 1.1 Virtual Directory, but is Running under .NET 2.0 (But i couldnt see this as an issue).

Has anyone else had this? Is it an issue with .NET 2.0 or the ISAPI extension, i have raised this with Helicon, but no response as yet.

The links are as follows for your info:

Under ISAPI - http://www.packyourbags.com/Travel-Guide/Default.aspx
Not under ISAPI - http://www.packyourbags.com/pys-netv2/travel-guide/Default.aspx

If anyone has come across the same thing i would be interested to know.

Regards
Anthony Hook</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>I am using ASP.NET 2.0, Isapi_Rewrite (Helicon).</p>
<p>I have a set of pages that when requested under the Isapi Filter they render then after 1 minute or so they display &#8220;Internet Explorer cannot display the webpage&#8221;.</p>
<p>The page is been rendered in what would be a .NET 1.1 Virtual Directory, but is Running under .NET 2.0 (But i couldnt see this as an issue).</p>
<p>Has anyone else had this? Is it an issue with .NET 2.0 or the ISAPI extension, i have raised this with Helicon, but no response as yet.</p>
<p>The links are as follows for your info:</p>
<p>Under ISAPI &#8211; <a href="http://www.packyourbags.com/Travel-Guide/Default.aspx" rel="nofollow">http://www.packyourbags.com/Travel-Guide/Default.aspx</a><br />
Not under ISAPI &#8211; <a href="http://www.packyourbags.com/pys-netv2/travel-guide/Default.aspx" rel="nofollow">http://www.packyourbags.com/pys-netv2/travel-guide/Default.aspx</a></p>
<p>If anyone has come across the same thing i would be interested to know.</p>
<p>Regards<br />
Anthony Hook</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ASP.NET AdSense web control develoepr</title>
		<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/#comment-96004</link>
		<dc:creator>ASP.NET AdSense web control develoepr</dc:creator>
		<pubDate>Sat, 03 Feb 2007 23:43:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=326#comment-96004</guid>
		<description>Thanks for info.

I&#039;m developing an ASP.NET 2.0 web controls to display Google AdSense units e.g. AdUnit/LinkUnit and wanted and used to use url rewriting for the library&#039;s website http://AdSenseASP.NET/2.0-WebControls/ but will check is it and issue or not.</description>
		<content:encoded><![CDATA[<p>Thanks for info.</p>
<p>I&#8217;m developing an ASP.NET 2.0 web controls to display Google AdSense units e.g. AdUnit/LinkUnit and wanted and used to use url rewriting for the library&#8217;s website <a href="http://AdSenseASP.NET/2.0-WebControls/" rel="nofollow">http://AdSenseASP.NET/2.0-WebControls/</a> but will check is it and issue or not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Url Rewriting in asp.net 2.0 for virtual directories</title>
		<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/#comment-90245</link>
		<dc:creator>Url Rewriting in asp.net 2.0 for virtual directories</dc:creator>
		<pubDate>Tue, 28 Nov 2006 16:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=326#comment-90245</guid>
		<description>Hey,
 I just wrote an article about &lt;a href=&quot;http://www.4invent.com/post73-URL-Rewriting-in-ASP.NET-2.0.aspx&quot; rel=&quot;nofollow&quot;&gt;Url Rewriting in asp.net 2.0 for virtual directories&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Hey,<br />
 I just wrote an article about <a href="http://www.4invent.com/post73-URL-Rewriting-in-ASP.NET-2.0.aspx" rel="nofollow">Url Rewriting in asp.net 2.0 for virtual directories</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: makulit</title>
		<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/#comment-69133</link>
		<dc:creator>makulit</dc:creator>
		<pubDate>Tue, 15 Aug 2006 17:00:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=326#comment-69133</guid>
		<description>Hi,

I&#039;m hoping someone could help me with a dilemma I&#039;m facing right now.  After reading articles about dynamic URLs and how they are not SEO friendly, I am convinced that help improve our website SERP position we should consider using static URLs.  But the problem is convincing our programmers to do a rewrite for it will take them months to do the job. So here are a couple of questions for you guys...

Our site uses the following URL format for almost all of the articles we publish:
http://www.xyz.com/xyz/headlines/article_display.jsp?xyz_content_id=1002985563

1.  Will search engines have a problem crawling or indexing such pages?
2.  Is it possible to get high rankings in SERPs with that URL?  
3.  Do you think rewriting URLs for dynamic pages such as the example above worthwhile?
2.  Based on experience roughly how long does it take to do the rewrite?

Hope to hear from you! Thanks!</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m hoping someone could help me with a dilemma I&#8217;m facing right now.  After reading articles about dynamic URLs and how they are not SEO friendly, I am convinced that help improve our website SERP position we should consider using static URLs.  But the problem is convincing our programmers to do a rewrite for it will take them months to do the job. So here are a couple of questions for you guys&#8230;</p>
<p>Our site uses the following URL format for almost all of the articles we publish:<br />
<a href="http://www.xyz.com/xyz/headlines/article_display.jsp?xyz_content_id=1002985563" rel="nofollow">http://www.xyz.com/xyz/headlines/article_display.jsp?xyz_content_id=1002985563</a></p>
<p>1.  Will search engines have a problem crawling or indexing such pages?<br />
2.  Is it possible to get high rankings in SERPs with that URL?<br />
3.  Do you think rewriting URLs for dynamic pages such as the example above worthwhile?<br />
2.  Based on experience roughly how long does it take to do the rewrite?</p>
<p>Hope to hear from you! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John A Davis</title>
		<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/#comment-52319</link>
		<dc:creator>John A Davis</dc:creator>
		<pubDate>Thu, 20 Jul 2006 19:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=326#comment-52319</guid>
		<description>Well, now I know where to buy my next Acura.

:)</description>
		<content:encoded><![CDATA[<p>Well, now I know where to buy my next Acura.</p>
<p> <img src='http://www.mattcutts.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd Bondy</title>
		<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/#comment-51750</link>
		<dc:creator>Todd Bondy</dc:creator>
		<pubDate>Thu, 20 Jul 2006 00:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=326#comment-51750</guid>
		<description>Matt,
My competitor is doing some tricky things with his website to boost his rank which I thought Google was supposed to catch.  The term Sacramento Acura is very important to both of us.  His website is www.elkgroveacura.com.  He also owns an EXACT duplicate called www.sacramentoacura.com which directs all of its links to www.elkgroveacura.com.  This has made it impossible to take the #1 spot for the search term.  I thought Google was penalizing webmasters for this kind of activity.  I have reported him several times via site maps to no avail.  Is anyone looking at this kind of behavior?</description>
		<content:encoded><![CDATA[<p>Matt,<br />
My competitor is doing some tricky things with his website to boost his rank which I thought Google was supposed to catch.  The term Sacramento Acura is very important to both of us.  His website is <a href="http://www.elkgroveacura.com" rel="nofollow">http://www.elkgroveacura.com</a>.  He also owns an EXACT duplicate called <a href="http://www.sacramentoacura.com" rel="nofollow">http://www.sacramentoacura.com</a> which directs all of its links to <a href="http://www.elkgroveacura.com" rel="nofollow">http://www.elkgroveacura.com</a>.  This has made it impossible to take the #1 spot for the search term.  I thought Google was penalizing webmasters for this kind of activity.  I have reported him several times via site maps to no avail.  Is anyone looking at this kind of behavior?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web Server India</title>
		<link>http://www.mattcutts.com/blog/asp-net-2-and-url-rewriting-sometimes-harmful/#comment-50577</link>
		<dc:creator>Web Server India</dc:creator>
		<pubDate>Tue, 18 Jul 2006 03:41:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=326#comment-50577</guid>
		<description>Hi Matt,

The information posted here about the URL rewriting in ASP.NET 2 is really great. Earlier we have developed few URL Rewriting project successfuly in ASP.NET and google supports very well to our websites. But after reading this useful information I will take care while coding in ASP.NET 2.</description>
		<content:encoded><![CDATA[<p>Hi Matt,</p>
<p>The information posted here about the URL rewriting in ASP.NET 2 is really great. Earlier we have developed few URL Rewriting project successfuly in ASP.NET and google supports very well to our websites. But after reading this useful information I will take care while coding in ASP.NET 2.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
