Zack
Zack

Reputation: 1703

Technical terminology - URL Paths types: Absolute, relative, and

I understand that an absolute path is of the type:

http://www.example.com/thisdir/4/5uy3/2/s.js

and also, that relative paths are of the type:

5uy3/2/s.js (in relation to directory "4")

but what is the term for the type of path that is prepended with a slash to reference back to the root? For example, if someone was working on a script in s.js, he/she might use /thisdir/4/5uy3/2/s.js when including that javascript from different directories to avoid having to consciously think about the current working directory when including it. Do you know what this type of path is called?

Upvotes: 5

Views: 2871

Answers (1)

Trisped
Trisped

Reputation: 6003

From Dreamweaver / About linking and navigation

There are three types of link paths:

The term "application root" would be the same as "site root" except that the site must be an application.

Upvotes: 7

Related Questions