vote up 6 vote down star
2

1) Absolute
http://www.example.com/images/icons.png

2) Relative
../images/icons.png

3) ???
/images/icons.png

4) ???
//www.example.com/images/icons.png

Do URL types 3 and 4 have a name? One place I've seen type 4 being used is at slashdot.

flag

I'd name the 4th malformed, 3rd I do not know. – Esko Apr 13 at 7:17
@Esko: Browsers seem to understand type 4. I think they are useful for when you serve both from http and https and you want to have the same html source files but with absolute references. – cherouvim Apr 13 at 7:21
@Esko except for the fact that it is not malformed... – sjstrutt Apr 13 at 8:05
5) ./images/icons.png – Colargol Apr 13 at 9:51
@Colargol If you see my response, that is also document-relative. – sjstrutt Apr 13 at 19:58

4 Answers

vote up 7 vote down check
  1. Absolute http://www.example.com/images/icons.png
  2. Document-Relative ../images/icons.png
  3. Root-Relative /images/icons.png
  4. Protocol-Relative //www.example.com/images/icons.png

For #4, I've also often called them "Protocol-Agnostic"

link|flag
this answer might look good, but AFAIK it's all just made up – Alnitak Aug 24 at 15:00
vote up 2 vote down

Type three is root-relative.

Dunno about 4.

link|flag
Scheme-relative? :-P – Chris Jester-Young Apr 13 at 7:23
protocol-agnostic? – sjstrutt Apr 13 at 8:00
vote up 6 vote down

number 3 is also considered relative. number 4 is absolute, but lacks the protocol. This is useful, if you want to be able to access the same URL using HTTP and HTTPS.

Absolute URLs specify the location of a Web page in full, and work identically no matter where in the world you are.

Relative URLs are context-sensitive, giving a path with respect to your current location.

link|flag
Yes, I think that's about right. – Cerebrus Apr 13 at 7:44
vote up 8 vote down

Type 1 is just a "URI" (sometimes called an "absolute URI").

For types 2, 3 and 4 the definitive answers are in RFC 3986, section 4.2.

They are all "relative references", but according to the RFC are qualified thus:

  • ../images/icons.png - relative path reference
  • /images/icons.png - absolute path reference
  • //.../icons.png - network path reference
link|flag
+1 for actually quoting a source – Joachim Sauer Aug 24 at 13:44

Your Answer

Get an OpenID
or

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