Absolute vs relative URLs
Asked Answered
S

12

280

I would like to know the differences between these two types of URLs: relative URLs (for pictures, CSS files, JavaScript files, etc.) and absolute URLs.

In addition, which one is better to use?

Skewer answered 5/1, 2010 at 9:30 Comment(1)
seoclarity.net/resources/knowledgebase/…Pap
N
212

In general, it is considered best-practice to use relative URLs, so that your website will not be bound to the base URL of where it is currently deployed. For example, it will be able to work on localhost, as well as on your public domain, without modifications.

Nucleolated answered 5/1, 2010 at 9:33 Comment(13)
+1 I agree. There might be (a few) times when absolute urls are better, for instance when using a CDN, or if you need to change the content website. Searching for a domain name is a lot easier than searching for relative urls IMHO.Phinney
For maintenance purposes it can be easier to use root-relative URLs, without the domain name. i.e. On StackOverflow use the root-relative URL '/questions/2005079/absolute-vs-relative-urls' to link to this question. The '/' on the front makes the URL root-relative. This approach pays off when you go to move your files around or change the directory structure of your project.Calistacalisthenics
The localhost argument is a good one, but when moving a site from one domain to another, a simple 'find & replace' action in TextMate, Coda or your favorite editor will solve itCrystie
can you provide any sources? I've only read ever that absolute url's are a better idea. Also, you need to have some kind of system to make absolute urls anyways if you have an RSS feed.Stoop
I know this answer is relatively old, but it still actual. If you can, please tell your opinion about this article, as it's opposite to you answer: yoast.com/relative-urls-issuesChicoine
@Crystie But can you do that? I'm definitely a fan/proponent of using that method, but get into a bigger framework and large refactorings are a notoriously daunting/terrifying task. While you thought you may have switched them all, even in a smart IDE, often times they can be missed if they're coded into strings or dynamically created. The worst part of that is that usually those missed references aren't caught until after your solution goes back into production... :(Landgraviate
I had the case that I used absolute URL's started with / so moving to another server should be possible, but then I deployed my app in www.mydomain.com/apps/ and now i can't find any resources ofc. Thats why I agree that relative URL's are safer - still they can messup when you reuse serverside templates in different routes, but there you can easily use header-redirects to send the user to the correct path before rendering.Ruvolo
@Crystie 'find & replace' is no solution at all if your product is a deployed website which is shipped to customersBron
To use absolute links may try <a href="<?php echo $_SERVER['REQUEST_SCHEME'];?>://<?php echo $_SERVER['SERVER_NAME'];?>rest-of-url"Weaponry
This is the absolute best answer to the question, relative to the other answers :) Furthermore I would point out that a number of SEO experts warn that absolute URLs are somehow better and that digital marketing executives should argue with developers and ask them to switch all URLs from relative to absolute. This one factor convinces me that relative URLs are in fact the way to go.Stagner
Can a URL even be relative? Isn't the presence of the protocol what makes a URI and URL?Rusk
an old but revelating answer on the terminology: https://mcmap.net/q/110205/-absolute-urls-relative-urls-and (relative path, absolute path, relative URL, absolute URL)Rasbora
I'm really struggling to do it on both it will be able to work on localhost, as well as on your public domain, without modifications. I'm able to get it to my website domain and local computer but not Github can anyone help me please?Unideaed
C
329

Should I use absolute or relative URLs?

If by absolute URLs you mean URLs including scheme (e.g. HTTP / HTTPS) and the hostname (e.g. yourdomain.example) don't ever do that (for local resources) because it will be terrible to maintain and debug.

Let's say you have used absolute URL everywhere in your code like <img src="http://yourdomain.example/images/example.png">. Now what will happen when you are going to:

  • switch to another scheme (e.g. HTTP -> HTTPS)
  • switch domain names (test.yourdomain.example -> yourdomain.example)

In the first example what will happen is that you will get warnings about unsafe content being requested on the page. Because all your URLs are hard coded to use http(://yourdomain.example/images/example.png). And when running your pages over HTTPS the browser expects all resources to be loaded over HTTPS to prevent leaking of information.

In the second example, when putting your site live from the test environment, it would mean all resources are still pointing to your test domain instead of your live domain.

So to answer your question about whether to use absolute or relative URLs: always use relative URLs (for local resources).

What are the differences between the different URLs?

First lets have a look at the different types of URLs that we can use:

  • http://yourdomain.example/images/example.png
  • //yourdomain.example/images/example.png
  • /images/example.png
  • images/example.png

What resources do these URLs try to access on the server?

In the examples below I assume the website is running from the following location on the server /var/www/mywebsite.

http://yourdomain.example/images/example.png

The above (absolute) URL tries to access the resource /var/www/website/images/example.png. This type of URL is something you would always want to avoid for requesting resources from your own website for reason outlined above. However it does have its place. For example if you have a website http://yourdomain.example and you want to request a resource from an external domain over HTTPS you should use this. E.g., https://externalsite.example/path/to/image.png.

//yourdomain.example/images/example.png

This URL is relative based on the current scheme used and should almost always be used when including external resources (images, JavaScript files, etc.).

This type of URL uses the current scheme of the page it is on. This means that you are on the page http://yourdomain.example and on that page is an image tag <img src="//yourdomain.example/images/example.png">, the URL of the image would resolve in http://yourdomain.example/images/example.png. When you would have been on the page https://yourdomain.example and on that page is an image tag <img src="//yourdomain.example/images/example.png"> the URL of the image would resolve in https://yourdomain.example/images/example.png.

This prevents loading resources over HTTPS when it is not needed and automatically makes sure the resource is requested over HTTPS when it is needed.

The above URL resolves in the same manner on the server side as the previous URL:

The above (absolute) URL tries to access the resource /var/www/website/images/example.png.

/images/example.png

For local resources this is the preferred way of referencing them. This is a relative URL based on the document root (/var/www/mywebsite) of your website. This means when you have <img src="/images/example.png"> it will always resolve to /var/www/mywebsite/images/example.png.

If at some point you decide to switch domain it will still work because it is relative.

images/example.png

This is also a relative URL although a bit different than the previous one. This URL is relative to the current path. What this means is that it will resolve to different paths depending on where you are in the site.

For example, when you are on the page http://yourdomain.example and you use <img src="images/example.png"> it would resolve on the server to /var/www/mywebsite/images/example.png as expected, however when your are on the page http://yourdomain.example/some/path and you use the exact same image tag it suddenly will resolve to /var/www/mywebsite/some/path/images/example.png.

When should I use what?

When requesting external resources, you most likely want to use an URL relative to the scheme (unless you want to force a different scheme) and when dealing with local resources you want to use relative URLs based on the document root.

An example document:

<!DOCTYPE html>
<html>
    <head>
        <title>Example</title>
        <link href='//fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700' rel='stylesheet' type='text/css'>
        <link href="/style/style.css" rel="stylesheet" type="text/css" media="screen"></style>
    </head>
    <body>
        <img src="/images/some/localimage.png" alt="">
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>
    </body>
</html>

Some (kind of) duplicates

Carissacarita answered 17/2, 2014 at 12:18 Comment(12)
Does using absolute URLs load the page faster, than compared to using relative URLs? (Any time spent on resolving the relative path?)Diverticulum
Any difference possible would be so little it is not something you should worry about if it is measurable at all.Carissacarita
An example of including Google Jquery as protocolless: <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" ></script>Diverticulum
This answer assumes that absolute URLs aren't being generated dynamically which solves each issue mentioned.Lasandralasater
J.Money is correct. Modern web frameworks have the notion of "reverse routing" to allow you to create URLS from one of your pages to another one of your pages (it has to be to another page in your same website). These allow you to give a name to a URL and then use this name instead of the URL. That way, if you ever want to change the URL, you can change the URL in one place, since everywhere else you only ever refer to that URL by its name.Droit
You say "when you want to request a resource from an external domain over http you should use [http:// style]", then in the next paragraph you say protocol-relative links should "almost always be used when including external resources". Both paragraphs use images as examples. What's the difference?Apnea
what about ../path/to/image.png? Is this root-relative?Karlee
Yes that is relative to the current path @ReeceDodds. Say you are on https://foobar.com/my/awesome/subdir that URI points to https://foobar.com/my/awesome/path//to/image.png. It goes one level up from /my/awesome/subdir (..) and into /path/to/image.png.Carissacarita
Great answer, thanks a lot! For the sake of clarity, shouldn't you replace //yourdomain.com/images/example.png by //externaldomain.com/images/example.png ?Ernaldus
one thing that I have only just realized is that a relative url is not the same the same as a relative path on a filesystem, i.e url starting with single slash is considered relative but not affected by current path, so i considered this absolute, thanks for the clarificationRf
nice answer! Curious if the same rules would also apply to the "action" attribute of html form? I did make some experiments and it looks like so, but couldn't find any source doc that specify this behavior. Can anyone confirm?Chamois
When you said "however when your are on the page http://yourdomain.example/some/path and you use the exact same image tag it suddenly will resolve to /var/www/mywebsite/some/path/images/example.png" you actually mean that it will resolve to /var/www/mywebsite/some/images/example.png, without /path section, right?Kato
N
212

In general, it is considered best-practice to use relative URLs, so that your website will not be bound to the base URL of where it is currently deployed. For example, it will be able to work on localhost, as well as on your public domain, without modifications.

Nucleolated answered 5/1, 2010 at 9:33 Comment(13)
+1 I agree. There might be (a few) times when absolute urls are better, for instance when using a CDN, or if you need to change the content website. Searching for a domain name is a lot easier than searching for relative urls IMHO.Phinney
For maintenance purposes it can be easier to use root-relative URLs, without the domain name. i.e. On StackOverflow use the root-relative URL '/questions/2005079/absolute-vs-relative-urls' to link to this question. The '/' on the front makes the URL root-relative. This approach pays off when you go to move your files around or change the directory structure of your project.Calistacalisthenics
The localhost argument is a good one, but when moving a site from one domain to another, a simple 'find & replace' action in TextMate, Coda or your favorite editor will solve itCrystie
can you provide any sources? I've only read ever that absolute url's are a better idea. Also, you need to have some kind of system to make absolute urls anyways if you have an RSS feed.Stoop
I know this answer is relatively old, but it still actual. If you can, please tell your opinion about this article, as it's opposite to you answer: yoast.com/relative-urls-issuesChicoine
@Crystie But can you do that? I'm definitely a fan/proponent of using that method, but get into a bigger framework and large refactorings are a notoriously daunting/terrifying task. While you thought you may have switched them all, even in a smart IDE, often times they can be missed if they're coded into strings or dynamically created. The worst part of that is that usually those missed references aren't caught until after your solution goes back into production... :(Landgraviate
I had the case that I used absolute URL's started with / so moving to another server should be possible, but then I deployed my app in www.mydomain.com/apps/ and now i can't find any resources ofc. Thats why I agree that relative URL's are safer - still they can messup when you reuse serverside templates in different routes, but there you can easily use header-redirects to send the user to the correct path before rendering.Ruvolo
@Crystie 'find & replace' is no solution at all if your product is a deployed website which is shipped to customersBron
To use absolute links may try <a href="<?php echo $_SERVER['REQUEST_SCHEME'];?>://<?php echo $_SERVER['SERVER_NAME'];?>rest-of-url"Weaponry
This is the absolute best answer to the question, relative to the other answers :) Furthermore I would point out that a number of SEO experts warn that absolute URLs are somehow better and that digital marketing executives should argue with developers and ask them to switch all URLs from relative to absolute. This one factor convinces me that relative URLs are in fact the way to go.Stagner
Can a URL even be relative? Isn't the presence of the protocol what makes a URI and URL?Rusk
an old but revelating answer on the terminology: https://mcmap.net/q/110205/-absolute-urls-relative-urls-and (relative path, absolute path, relative URL, absolute URL)Rasbora
I'm really struggling to do it on both it will be able to work on localhost, as well as on your public domain, without modifications. I'm able to get it to my website domain and local computer but not Github can anyone help me please?Unideaed
K
82

See Example URIs (Wikipedia).

foo://username:[email protected]:8042/over/there/index.dtb;type=animal?name=ferret#nose
\ /   \________________/\_________/ \__/            \___/ \_/ \_________/ \_________/ \__/
 |           |               |       |                |    |       |           |       |
 |       userinfo         hostname  port              |    |       parameter query  fragment
 |    \_______________________________/ \_____________|____|____________/
scheme                |                               | |  |
 |                authority                           |path|
 |                                                    |    |
 |            path                       interpretable as filename
 |   ___________|____________                              |
/ \ /                        \                             |
urn:example:animal:ferret:nose               interpretable as extension

An absolute URL includes the parts before the "path" part - in other words, it includes the scheme (the http in http://foo/bar/baz) and the hostname (the foo in http://foo/bar/baz) (and optionally port, userinfo and port).

Relative URLs start with a path.

Absolute URLs are, well, absolute: the location of the resource can be resolved looking only at the URL itself. A relative URL is in a sense incomplete: to resolve it, you need the scheme and hostname, and these are typically taken from the current context. For example, in a web page at

http://myhost/mypath/myresource1.html

you could put a link like so

<a href="pages/page1">click me</a>

In the href attribute of the link, a relative URLs used, and if it is clicked, it has to be resolved in order to follow it. In this case, the current context is

http://myhost/mypath/myresource1.html

so the schema, hostname, and leading path of these are taken and prepended to pages/page1, yielding

http://myhost/mypath/pages/page1

If the link would have been:

<a href="/pages/page1">click me</a>

(note the / appearing at the start of the URL) then it would have been resolved as

http://myhost/pages/page1

because the leading / indicates the root of the host.

In a web application, I would advise to use relative URLs for all resources that belong to your app. That way, if you change the location of the pages, everything will continue to work. Any external resources (could be pages completely outside your application, but also static content that you deliver through a content delivery network) should always be pointed to using absolute URLs: if you don't there simply is no way to locate them, because they reside on a different server.

Kaisership answered 5/1, 2010 at 9:50 Comment(3)
Relative URLs do not need to start with the URL path. //example.com/…, ?foobar and #foobar are also relative URLs and do not start with the URL path (well ok, for ?foobar you can say it does start with an empty path).Wellestablished
@Gumbo, are //example.com/…-type URLs called relative? that’s new to me.Rasbora
@törzsmókus In terms of RFC 2396: “Relative URI references are distinguished from absolute URI in that they do not begin with a scheme name.”Wellestablished
W
66

Assume we are creating a subsite whose files are in the folder http://site.ru/shop.

1. Absolute URL

Link to home page
href="http://sites.ru/shop/"

Link to the product page
href="http://sites.ru/shop/t-shirts/t-shirt-life-is-good/"

2. Relative URL

Link from home page to product page
href="t-shirts/t-shirt-life-is-good/"

Link from product page to home page
href="../../"

Although relative URL look shorter than absolute one, but the absolute URLs are more preferable, since a link can be used unchanged on any page of site.

Intermediate cases

We have considered two extreme cases: "absolutely" absolute and "absolutely" relative URLs. But everything is relative in this world. This also applies to URLs. Every time you say about absolute URL, you should always specify relative to what.

3. Protocol-relative URL

Link to home page
href="//sites.ru/shop/"

Link to product page
href="//sites.ru/shop/t-shirts/t-shirt-life-is-good/"

Google recommends such URL. Now, however, it is generally considered that http:// and https:// are different sites.

4. Root-relative URL

I.e. relative to the root folder of the domain.

Link to home page
href="/shop/"

Link to product page
href="/shop/t-shirts/t-shirt-life-is-good/"

It is a good choice if all pages are within the same domain. When you move your site to another domain, you don't have to do a mass replacements of the domain name in the URLs.

5. Base-relative URL (home-page-relative)

The tag <base> specifies the base URL, which is automatically added to all relative links and anchors. The base tag does not affect absolute links. As a base URL we'll specify the home page: <base href="http://sites.ru/shop/">.

Link to home page
href=""

Link to product page
href="t-shirts/t-shirt-life-is-good/"

Now you can move your site not only to any domain, but in any subfolder. Just keep in mind that, although URLs look like relative, in fact they are absolute. Especially pay attention to anchors. To navigate within the current page we have to write href="t-shirts/t-shirt-life-is-good/#comments" not href="#comments". The latter will throw on home page.

Conclusion

For internal links I use base-relative URLs (5). For external links and newsletters I use absolute URLs (1).

Writhen answered 17/9, 2016 at 10:51 Comment(1)
great answer. too bad it lingers too low on the page for people to see it. answers a lot of the comments on other answers.Kurbash
L
25

There are really three types that should be discussed explicitly. In practice though URLs have been abstracted to be handled at a lower level and I would go as far as to say that developers could go through their entire lives without writing a single URL by hand.

Absolute

Absolute URLs tie your code to the protocol and domain. This can be overcome with dynamic URLs.

<a href=“https://dev.example.com/a.html?q=”>https://dev.example.com/a.html?q=</a>

Absolute Pros:

  1. Control - The subdomain and protocol can be controlled. People that enter through an obscure subdomain will be funneled into the proper subdomain. You can hop back and forth between secure and non-secure as appropriate.

  2. Configurable - Developers love things to be absolute. You can design neat algorithms when using absolute URLs. URLs can be made configurable so that a URL can be updated site-wide with a single change in a single configuration file.

  3. Clairvoyance - You can search for the people scraping your site or maybe pick up some extra external links.


Root Relative

Root Relative URLs tie your code to the base url. This can be overcome with dynamic URLs and/or base tags.

<a href=“/index.php?q=”>.example.com/index.php?q=</a>

Root Relative Pros:

  1. Configurable - The base tag makes them relative to any root you choose making switching domains and implementing templates easy.

Relative

Relative URLs tie your code to the directory structure. There is no way to overcome this. Relative URLs are only useful in file systems for traversing directories or as a shortcut for a menial task.

<a href=“index.php?q=”>index.php?q=</a>
<link src=“../.././../css/default.css” />

Relative Cons:

  1. CONFUSING - How many dots is that? how many folders is that? Where is the file? Why isn't it working?

  2. MAINTENANCE - If a file is accidentally moved resources quit loading, links send the user to the wrong pages, form data might be sent to the incorrect page. If a file NEEDS to be moved all the resources that are going to quit loading and all the links that are going to be incorrect need to be updated.

  3. DOES NOT SCALE - When webpages become more complex and views start getting reused across multiple pages the relative links will be relative to the file that they were included into. If you have a navigation snippet of HTML that is going to be on every page then relative will be relative to a lot of different places. The first thing people realize when they start creating a template is that they need a way to manage the URLs.

  4. COMPUTED - They are implemented by your browser (hopefully according to RFC). See chapter 5 in RFC3986.

  5. OOPS! - Errors or typos can result in spider traps.


The Evolution of Routes

Developers have stopped writing URLs in the sense being discussed here. All requests are for a website's index file and contain a query string, aka a route. The route can be thought of as a mini URL that tells your application the content to be generated.

<a href="<?=Route::url('named_url', array('first' => 'my', 'last' => 'whacky'))?>">
    http://dev.example.com/index.php/my:whacky:url
</a>

Routes Pros:

  1. All the advantages of absolute urls.
  2. Use of any character in URL.
  3. More control (Good for SEO).
  4. Ability to algorithmically generate URLs. This allows the URLs to be configurable. Altering the URL is a single change in a single file.
  5. No need for 404 not founds. Fallback routes can display a site map or error page.
  6. Convenient security of indirect access to application files. Guard statements can make sure that everybody is arriving through the proper channels.
  7. Practicality in MVC approach.

My Take

Most people will make use of all three forms in their projects in some way or another. The key is to understand them and to choose the one best suited for the task.

Lasandralasater answered 21/5, 2014 at 0:56 Comment(6)
You're missing protocol-relative URLs, which are strictly better than completely absolute URLs. Absolute URLs are troublesome when upgrading the scheme (to HTTPS, mostly), relative URLs fix this.Confirmand
@Confirmand Just serve everything over HTTPS.Lasandralasater
Side note: it looks like you used typographical quotes in most of your codes examples above. You might want to fix that.Micrococcus
And what type of url is the one with the dot first? E.g. "./index.html"Vouch
Could you elaborate a bit on Clairvoyance? If you were using "Root Relative" URLs, why wouldn't you be able to see people scraping your site?Longstanding
@Longstanding If people copy code or even point their domain at your server's IP, relative URLs will keep users on the fake site while absolute URLs will lead users back to the real site. Absolute URLs are an attribution to the source. Search engines can be used to find careless scrapers or fraudsters that are stealing content or duplicating entire sites, such as for phishing.Lasandralasater
L
12

I'm going to have to disagree with the majority here.

I think the relative URL scheme is "fine" when you want to quickly get something up and running and not think outside the box, particularly if your project is small with few developers (or just yourself).

However, once you start working on big, fatty systems where you switch domains and protocols all the time, I believe that a more elegant approach is in order.

When you compare absolute and relative URLs in essence, absolute wins. Why? Because it won't ever break. Ever. An absolute URL is exactly what it says it is. The catch is when you have to maintain your absolute URLs.

The weak approach to absolute URL linking is actually hard coding the entire URL. It is not a great idea and is probably the culprit of why people see them as dangerous, evil, and annoying to maintain. A better approach is to write yourself an easy-to-use URL generator. These are easy to write, and can be incredibly powerful—automatically detecting your protocol, easy-to-configuration (literally set the URL once for the whole application), etc., and it injects your domain all by itself. The nice thing about that: You go on coding using relative URLs, and at run time the application inserts your URLs as full absolutes on the fly. Awesome.

Seeing as how practically all modern sites use some sort of dynamic back-end, it's in the best interest of said site to do it that way. Absolute URLs do more than just make you certain of where they point to—they also can improve SEO performance.

I might add that the argument that absolute URLs is somehow going to change the load time of the page is a myth. If your domain weighs more than a few bytes and you're on a dialup modem in the 1980s, sure. But that's just not the case anymore. https://stackoverflow.com/ is 25 bytes, whereas the "topbar-sprite.png" file that they use for the nav area of the site weighs in at more than 9 KB. That means that the additional URL data is 0.2% of the loaded data in comparison to the sprite file, and that file is not even considered a big performance hit.

That big, unoptimized, full-page background image is much more likely to slow your load times.

An interesting post about why relative URLs shouldn't be used is here: Why relative URLs should be forbidden for web developers

An issue that can arise with relatives, for instance, is that sometimes server mappings (mind you on big, messed up projects) don't line up with file names and the developer may make an assumption about a relative URL that just isn't true. I just saw that today on a project that I'm on and it brought an entire page down.

Or perhaps a developer forgot to switch a pointer and all of a sudden google indexed your entire test environment. Whoops- duplicate content (bad for SEO!).

Absolutes can be dangerous, but when used properly and in a way that can't break your build they are proven to be more reliable. Look at the article above which gives a bunch of reasons why the WordPress URL generator is super awesome.

:)

Landgraviate answered 17/7, 2013 at 22:34 Comment(9)
When you say absolute URL do you mean the full url or using / to link to the base path? ie /products/wallets/thing.html as opposed to thing.html as opposed to http://www.myshop.com/products/wallets/thing.htmlFarland
Prepending with a "/" will always be relative to the domain root, I believe. So if your domain is "www.example.com", any references coded as "/image1.jpg" would be interpreted as "www.example.com/image1.jpg". Items without the leading slash are interpreted as relative to the request root. When I say "absolute URL" I mean the fully qualified url. I cringe to send MSDN links through the internet but this is actually a pretty good breakdown: msdn.microsoft.com/en-us/library/windows/desktop/…Landgraviate
This is the current best practice although many people haven't realized it yet. I love Routes, such as in Kohana where you can use echo Route::url('route_name') to build an absolute URL using the site URL and route information with the option to make it over HTTPS.Lasandralasater
I feel the need to point out that dialup modems weren't left back in the 80's. There are plenty of people now who have no choices other than dialup or super overpriced very limited satellite internet... and if you're poor, what could be better than free dialup? It really bothers me to see developers that believe that dialup doesn't exist anymore. It can take 5-10 minutes(!!!) to login to my bank's website on dialup... Paypal, Amazon and Ebay aren't much better. Egg Cave (a virtual pet site) and Facebook just plain don't work on dialup. That affects a lot of people who live in rural areas.Apostatize
Okay, yes, while there are some people on dialup, the vast (vast) majority of users are not on dialup. It also has a lot to do with demographic. If you're shooting for mega-huge ultra-performant results, then start clipping your domain off your URL. But the main point of that comment was to underscore that performance is usually found in other areas - you could gain all of the transfer time that you lost in url bytes by optimizing a single image. but, if 20% or more of your users are on dialup, I guess thats important. In 2015, and for all practical purposes, that's just not the case.Landgraviate
I might add, that ebay and most bank websites are not very well optimized. In fact, they suck entirely. But, they are also coming out of enormous frameworks run by hundreds or thousands of people, the management of which would be impossible without a considerable level of complexity. Not to justify the fact that the current version of the Microsoft.com homepage, which has merely a few blades on it, has 384kb of source code to it (that's just ridiculous), but it's not always quite so black-and-white, either. So yes, you're right, strive for performance, but keep best practices in mind, too.Landgraviate
Generated or not is orthogonal to the type of URL. You're arguing for generated, but user agents don't care whether the generated urls are absolute.Confirmand
I'm not arguing for generated for any reason other than the fact that automation makes life easier. I'm certainly not saying that a UA would ever know the difference.Landgraviate
It seems to me that the linked article and most part of your answer say "relative URLs are bad because of SEO". To me, from a technical point of view, I don't see anything wrong with them, however. More than that, I don't see a merit in having to rely on a tool or CMS mechanism in order to be able to maintain my URLs -- especially not if mainly for the sake of SEO. Simplicity always wins for me, and that means relative URLs win over absolute URLs any day.Micrococcus
G
6

If it is for use within your website, it's better practice to use relative URLs like this. If you need to move the website to another domain name or just debug locally, you can.

Take a look at what's Stack Overflow is doing (Ctrl + U in Firefox):

<a href="/users/recent/90691"> // Link to an internal element

In some cases they use absolute URLs:

<link rel="stylesheet" href="http://sstatic.net/so/all.css?v=5934">

... but this is only it's a best practice to improve speed. In your case, it doesn't look like you're doing anything like that so I wouldn't worry about it.

Glyn answered 5/1, 2010 at 9:38 Comment(0)
D
4

In most instances relative URLs are the way to go, they are portable by nature, which means if you wanted to lift your site and put it someone where else it would work instantly, reducing possibly hours of debugging.

There is a pretty decent article on absolute vs relative URLs, check it out.

Drouin answered 5/1, 2010 at 9:35 Comment(0)
W
4

A URL that starts with the URL scheme and scheme specific part (http://, https://, ftp://, etc.) is an absolute URL.

Any other URL is a relative URL and needs a base URL the relative URL is resolved from (and thus depend on) that is the URL of the resource the reference is used in if not declared otherwise.

Take a look at RFC 2396 – Appendix C for examples of resolving relative URLs.

Wellestablished answered 5/1, 2010 at 9:56 Comment(0)
N
3

Let's say you have a site www.yourserver.example. In the root directory for web documents you have an images sub-directoy and in that you have myimage.jpg.

An absolute URL defines the exact location of the document, for example:

http://www.yourserver.example/images/myimage.jpg

A relative URL defines the location relative to the current directory, for example, given you are in the root web directory your image is in:

images/myimage.jpg

(relative to that root directory)

You should always use relative URLs where possible. If you move the site to www.anotherserver.com you would have to update all the absolute URLs that were pointing at www.yourserver.example, relative ones will just keep working as is.

Northeastwards answered 5/1, 2010 at 9:35 Comment(0)
H
0

For every system that support relative URI resolution, both relative and absolute URIs do serve the same goal: referencing. And they can be used interchangeably. So you could decide in each case differently. Technically, they provide the same referencing.

To be precise, with each relative URI there already is an absolute URI. And that's the base-URI that relative URI is resolved against. So a relative URI is actually a feature on top of absolute URIs.

And that's also why with relative URIs you can do more as with an absolute URI alone - this is especially important for static websites which otherwise couldn't be as flexible to maintain as compared to absolute URIs.

These positive effects of relative URI resolution can be exploited for dynamic web-application development as well. The inflexibility absolute URIs do introduce are also easier to cope up with, in a dynamic environment, so for some developers that are unsure about URI resolution and how to properly implement and manage it (not that it's always easy) do often opt into using absolute URIs in a dynamic part of a website as they can introduce other dynamic features (e.g. configuration variable containing the URI prefix) so to work around the inflexibility.

So what is the benefit then in using absolute URIs? Technically there ain't, but one I'd say: Relative URIs are more complex because they need to be resolved against the so called absolute base-URI. Even the resolution is strictly define since years, you might run over a client that has a mistake in URI resolution. As absolute URIs do not need any resolution, using absolute URIs have no risk to run into faulty client behaviour with relative URI resolution. So how high is that risk actually? Well, it's very rare. I only know about one Internet browser that had an issue with relative URI resolution. And that was not generally but only in a very (obscure) case.

Next to the HTTP client (browser) it's perhaps more complex for an author of hypertext documents or code as well. Here the absolute URI has the benefit that it is easier to test, as you can just enter it as-is into your browsers address bar. However, if it's not just your one-hour job, it's most often of more benefit to you to actually understand absolute and relative URI handling so that you can actually exploit the benefits of relative linking.

Holocrine answered 16/3, 2014 at 11:52 Comment(0)
K
-4

I would heartily recommend relative URLs for pointing bits of the same site to other bits of the same site.

Don't forget that a change to HTTPS - even if in the same site - is going to need an absolute URL.

Karilla answered 7/8, 2010 at 17:19 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.