On 9/16/05, <b class="gmail_sendername">Derek Slager</b> &lt;<a href="mailto:derekslager@gmail.com">derekslager@gmail.com</a>&gt; wrote:<div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
By default, actually, Apache (and in fact, most other Web servers)<br>will respond differently. If &quot;foo&quot; is a directory under the document<br>root, Apache issues a redirect to &quot;.*/foo/&quot; when &quot;.*/foo&quot; is
<br>requested.<br><br>-Derek<br><br></blockquote></div><br>
That is the usual case for resolving URIs to resources in general.<br>
<br>
I may choose to do this however:<br>
<br>
<a href="http://myblog.tld/category/foo">http://myblog.tld/category/foo</a><br>
<br>
resolves to a document describing what foo means to me.<br>
<br>
<a href="http://myblog.tld/category/foo/">http://myblog.tld/category/foo/</a><br>
<br>
resolves to a atom feed of all the entries that I have tagged with foo.<br>
<br>
There is probably no problem in real life with doing the normalization,<br>
but strictly speaking .*/foo and .*/foo/ are not the same URI.<br>
<br>
- Luke<br>