This little module enables you to find the destination url of a short url.

For example, if bit.ly/123 is a short url for youtube.com/12345678901234567890, you can do this:

<?php
  $short_url = 'http://bit.ly/123';
  $destination_url = destination_url($short_url);
?>

Now $destination_url's value will be http://youtube.com/12345678901234567890.

Project information

Releases