Possible Duplicate:
How do short URLs services work?

Hi,

Can anybody explain how short URL's (technically) work, and for how long are they valid? Any articles about how does it work are welcome too (but please no example provider sites).

Thank you in advance.

link|improve this question

2  
Duplicate: How do short URLs services work? – Alex Mar 18 '11 at 11:26
Is your question more about pretty/friendly url? – Nilesh Mar 18 '11 at 11:29
@Nilesh: Honestly i dont what pretty/friendly-url are, but the question is in general. – O.D Mar 18 '11 at 11:45
feedback

closed as exact duplicate by Alex, Oded, David Thomas, dmckee, bmargulies Mar 19 '11 at 21:51

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

5 Answers

up vote 3 down vote accepted

The short URL server has a database matching the short URL (or, rather the coded part of the URL) to the actual URL it represents.

When it gets a request, it looks up the coded part and sends a redirect to the actual URL.

So, for example, the URL http://tinyurl.com/so-hints

  • Will go to the tinyurl server
  • The server will lookup what full URL matches so-hints
  • The server will issue a redirect to the browser to go to the full URL
link|improve this answer
Thank you Oded, this means the generated URL's will get longer depending on how many Entries are there. do you know how long such providers keep this information (in general)? – O.D Mar 18 '11 at 11:33
@O.D - In general, you are right. They use the full alphabet+numbers. If you consider that each space then have around 35 combinations, 10 characters can accommodate 10^35 URLs. So, it will take a while for them to get too long to be useful... – Oded Mar 18 '11 at 11:49
feedback
  1. Create a unique identifier for a given URL, store it in a database,
  2. when user visits short url, lookup the original URL in the database,
  3. return a HTTP 3xx (redirect) status code to the client with the actual address.

Short URLs usually use a combination of numbers and lowercase and uppercase letters. A combination of exactly six elements of this set (26 + 10 items) for the path component can already provide 2,176,782,336 unique ids.

If you want to study some source code, this article highlights 7 open source scripts:

link|improve this answer
feedback

There's just a relational database with a table that maps from a short, high-entropy string to a given URL. The short strings are created each time someone asks for one. They're not any form of encryption, it's just lookup.

link|improve this answer
1  
The database doesn't have to be relational. I made mine with db4o. :) – Mikael Östberg Mar 18 '11 at 11:29
feedback

In its simplest form it is just a key that is matched to a URL. From there you can add functionality.

Have a look at the spec for the Google shortener as they have a pretty balanced feature set: http://code.google.com/apis/urlshortener/v1/getting_started.html

link|improve this answer
feedback

They manage a list of short to long URLs and redirect each request to short URL to its original one

link|improve this answer
feedback

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