Re: FW: Questions about RFC 2396

Am Donnerstag, 20.02.03, um 05:33 Uhr (Europe/Berlin) schrieb Larry 
Masinter:
> 4.  There is no need to escape ':'.
>  

There is one place where one needs to escape ':'. And that is if
':' appears in the first segment of a relative uri reference. Like

a link to http://example.org/test/another:name.html
appearing in http://example.org/test/index.html

<a href="another:name.html">another</a>

will nto work. Either esacpe ':' or use

<a href="./another:name.html">another</a>

//Stefan

Received on Thursday, 20 February 2003 03:30:46 UTC