I thought using colons in URIs was "illegal". Then I saw that vimeo.com is using URIs like http://www.vimeo.com/tag:sample.

  1. What do you feel about the usage of colons in URIs?
  2. How do I make my Apache server work with the "colon" syntax because now it's throwing the "Access forbidden!" error when there is a colon in the first segment of the URI?
link|improve this question

I've seen URL's that contain : too. – Tempus Nov 15 '09 at 13:56
... and it wasn't for the port. – Tempus Nov 15 '09 at 13:56
Can you give an example? – Gumbo Nov 15 '09 at 13:57
I've seen something like this site.com/browse:section?id=1 – Tempus Nov 15 '09 at 14:01
2  
For reference, colons don't seem to be specifically disallowed at that point by RFC2396 section 3.3 ietf.org/rfc/rfc2396.txt – Tim Nov 15 '09 at 14:04
show 1 more comment
feedback

2 Answers

up vote 9 down vote accepted

Colons are allowed in the URI path. But you need to be careful when writing relative URI paths with a colon since it is not allowed when used like this:

<a href="tag:sample">

In this case tag would be interpreted as the URI’s scheme. Instead you need to write it like this:

<a href="./tag:sample">
link|improve this answer
Great point about the URI scheme. – ceejayoz Nov 15 '09 at 14:58
feedback

Also note the difference between Apache on Linux and Windows. Apache on Windows somehow doesn't allow colons to be used in the first part of the URL. Linux has no problem with this, however.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.