Short Uniform Resource Locator (URL) - Is usually a generated "short" URL which addresses a normal "long" URL to make it more readable and/or short.
0
votes
0answers
6 views
Facebook shows short url's destination instead of short url itself
Sometimes when there are frequent posts of the same url, facebook 'aggregates' them into one link, the sepcial things about this link is that facebook crawls though short urls e.g.:
...
0
votes
0answers
17 views
Twitter Streaming API track shortened URLs
I want to count the twitter mentions of a url with different paths.
Therefore I am using the twitter streaming api with the track filter like:
...
3
votes
0answers
61 views
Youtu.be URLs no longer equivalent with youtube.com URLs
I have made about 20 YouTube videos each producing an URL on the form www.youtu.be/… that was equivalent to the same URL but with www.youtube.com/….
I produced QR codes based on the former URLs and ...
0
votes
1answer
77 views
Google short url - max url length
I'm playing with Google URL shortner API, i would like to know if is there any maximum length for the URL returned from google.
I mean, short URLs are called short url because they are short, so they ...
0
votes
3answers
123 views
JavaScript clean-URL from page Title field [closed]
I have a field in my form in which I provide the name of my new page which I'm adding to my CMS.
I have a PHP code here which lowers case, sets '-' instead of ' ', and makes a short URL look nice:
...
0
votes
0answers
28 views
mod_rewrite for wordpress and url shortning
I am running on my Domain Wordpress and a shortning Service.
If I use Wordpress Permalinks with /%postname%/ and use my shortning URL service than one of them will not work.
The shortning URL can ...
1
vote
0answers
180 views
Shorten URL with Javascript using JSON
I am trying to short a Link over API and get the result with JSON
Some information about the API
Sample Response
{"error":0,"short":"http:\/\/doma.in\/sf0x6"}
Sample Usage in PHP
...
0
votes
1answer
110 views
Google App Engine short URL tracking with Google Analytics
My website generates some short URLs when users share a link (ex: http://futureo.us/l/ixjF).
These short URLs redirect the user to the original content I'm linking to. Before redirecting, the app ...
0
votes
0answers
54 views
Updating mysql with bit.ly short url variable
I have a quick question about using the bit.ly url shortener -
I have the api key working great, I feed in a long url and bit.ly does its magic and brings back the short url.
The problem I am ...
2
votes
0answers
114 views
How do I reverse a t.co URL to the originating Tweet?
I'm going through our site analytics, and have a load of t.co URLs which were referrers to a promotion we were doing. I'm trying to figure out if there is a way to reverse those back to the original ...
2
votes
2answers
36 views
Can't get mod_rewrite to correctly (and invisibly) re-write my URLs?
I'm trying to make a URL shortening service for my website.
So instead of:
http://www.myfullwebsitename.com/page78/this-is-a-headline/
users will be able to visit:
http://abc.de/aBxf
which ...
0
votes
1answer
44 views
Unshortening short URIs in spite of the Same Origin Policy
That damn SOP strikes again.
So, suppose I have "http://t.co/atyHdwLA" (client-side, we're talking), and I want to obtain "http://foo.com". I had a clever idea to construct an invisible iframe, and ...
4
votes
3answers
80 views
shortening of url in address bar
I am new to html. Is it possible to have Short URL for apps?
for example:- instead of long url "www.abc.com\x\y\z\a" can we have "www.abc.com\r" in the user 's address bar. can we emulate this using ...
0
votes
1answer
188 views
Resolving t.co urls via JavaScript
I'm retrieving tweets via the Twitter anywhere api. I would like to treat pure text tweets and tweets that contain a picture differently. I can do that by filtering for pic.twitter.com urls. ...
1
vote
1answer
188 views
How to get a short URL for my website?
These days I've seen a lot of websites using Short URLs for their whole websites instead of a single page reference.
Examples:
http://bo.lt
http://ge.tt
Just wondering how to get these type of ...
0
votes
1answer
117 views
Alias and rewriterules working together
I have multiple domain names pointing at one Apache2 virtual host:
ServerName domain1.com
ServerAlias domain2.com
ServerAlias domain3.com
To always display the same url I use a rewriterule like ...
1
vote
1answer
356 views
Generating short URLs in a distributed data store
Currently I run a web app that heavily relies on short URLs that link to the original content, these URLs need to be as short as possible.
At the moment, I use a simple MySQL data store for storing ...
2
votes
2answers
2k views
Custom short URLs in Joomla 1.5
I had a long ugly long URLs for Joomla articles. Being advised here to enable SEF, I got:
www.domain.com/cat1/subcat1/120-results-of-DES-project-in-2011
Nicer, but I also want custom short URL for ...
2
votes
3answers
504 views
How do I do Short URLs in MVC?
Suppose I want to publish (like in paper catalogs) some "short URLs" that are easy to type/remember, but I want them to redirect to a verbose, SEO-friendly URL. How do I accomplish that with MVC ...
0
votes
2answers
92 views
Can't get PHP code to work
I have this code, mainly it is meant to create shorurls for my site. But I simply cannot get it to work. Do you see something wrong with it? Is it ok to run a while() inside another one?
$urloriginal ...
-1
votes
1answer
267 views
Short Link SDK iOs
I'm looking for an sdk/easy way to create a short link programmatically, preferably via a known service such as bitly.com / tinurl.com
The only way I've found doing this is with McAfee's beta ...
0
votes
2answers
301 views
Need short URl for my Site htaccess
I need to change
http://localhost/engineering/management/administrator/modules/course/view.php
to
http://localhost/engineering/course_view.php
I tried the following rewriting
Options ...
14
votes
3answers
2k views
how to implement a short url like urls in twitter?
If there is a long url, i want to generate a short url like those in twitter, is there some way to implement in ruby?
Thank you in advance.
0
votes
3answers
337 views
Short links in asp.net
I want t use short and beaty links for referal registration in my asp.net application. Something like http://MySite.ru/xbsdakj. How can i implement this stuff?
0
votes
1answer
447 views
Python short url generator
I'm using this code to generate short url. http://code.activestate.com/recipes/576918/
The idea is to encode an integer id using base62 and function enbase just works fine.
class UrlEncoder(object):
...
7
votes
2answers
262 views
When creating a short url service, is 302 temporary redirect the best way to go?
When creating a short URL service for URLs on the same domain, should we be using a 302 redirect?
Full URL structure: example.com/gig/{id}/gig-full-name-slug
Short URL structure: ...
1
vote
2answers
342 views
How to redirect users to a custom form using short URLs?
I have a project where users would navigate to a provided shortURL, which would redirect everyone to a similar looking form with different business names.
Currently I have a MySQL database that looks ...
5
votes
3answers
348 views
file_get_contents() for short urls
file_get_contents() dosen't read data for shor urls
Example:
http://wp.me/pbZy8-1WM,
http://bit.ly/d00E2C
Please help me in handle this. OR Is there any CURL function to handle above links?
1
vote
2answers
4k views
CSS background-image won't show with short URL
I've done my searching and the topics haven't been of help.
I'm trying to have the background image of my header repeat across the X axis of the header div.
When I make CSS with a long URL such as
...
0
votes
3answers
172 views
Javascript: How do I add a top bar to a short url?
I've been trying to understand how is possible to develop a bit.ly style URL shortener which also adds a bar to the website.
As for example (sorry for the ad): http://om.ly/BSdZu
There's a group on ...
1
vote
1answer
371 views
Formatting url to generate goo.gl short url
How do a form a url to generate a goo.gl short url?
In bit.ly can do this with:
...
1
vote
2answers
391 views
Best way to generate bit.ly or twitpic style ids?
For a personal project I'm working on, I'd like to generate ids for objects on my website in the same style as sites like bit.ly and twitpic. Sending users to example.com/4gwv9k would let me get the ...
0
votes
1answer
389 views
How to implement Short URL in asp.net 2.0 version
is it possible to implement short urls in asp.net 2.0 version. please give me the idea in such a by which i can make any big url short and also again to get back the long url back from short url. ...
1
vote
5answers
116 views
modifying url shortner script
I've been using Johnboy URL shortner and I noticed it doesn't check and see if the URL that it generates exists in the database. How could I ensure that the URL is unique>
4
votes
5answers
3k views
PHP random URL names (short URL)
After using sites like JS Fiddle I noticed that they auto generate a random and unique URL made up of various upper and lower case characters.
We could benefit from this for our booking pages. How ...
2
votes
5answers
620 views
How does short URLS work? [duplicate]
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 ...
2
votes
4answers
744 views
Dynamically generate short URLs for a SQL database?
My client has database of over 400,000 customers. Each customer is assigned a GUID. He wants me to select all the records, create a dynamic "short URL" which includes this GUID as a parameter. Then ...
1
vote
3answers
464 views
Design and implementation for Short URLs on IIS and ASP.NET stack
I'm interested in creating "short URLs" a segment of pages on a site. However, this isn't in the traditional sense of "short URLs" like bit.ly where it will redirect to a different destination URL. I ...
3
votes
2answers
663 views
Implement short urls (tinyurls) for twitter in c#?
how do you convert full(long) urls into short urls(like tinyurls) in C# for twitter? I imagine this is probably very simple with the right api. Does anyone know of a good api for doing this?
0
votes
2answers
100 views
How to redirect - rewriten urls to short urls
I have changed my site url structure. But, Google indexed urls are giving 404 not found error. Now, I need a .htaccess rewrite rule for,
From url: www.mydomain.com/topic-titles-here-t273.html
To ...
1
vote
2answers
1k views
Regarding crawling of short URLs using nutch
I am using nutch crawler for my application which needs to crawl a set of URLs which I give to the urls directory and fetch only the contents of that URL only.
I am not interested in the contents of ...
0
votes
2answers
727 views
How to convert all Links of a webpage into short URLs?
the thing is I want to change all the URL's in a webpage for Short URL's, (of any service, a known one would be preferable) I think this can be done with a simple Javascript file linked in the tag of ...
2
votes
3answers
491 views
Simplest way to get a long URL for a shortened URL in Cocoa?
What is the simplest way to retrieve the original URL for a short URL in Cocoa? Anything that can be done in just a few lines?
2
votes
1answer
208 views
What to do with separate short url domain? Redirect to primary domain? .htaccess?
I'm using a drupal module that has an api to create short url's. It is configurable to use any domain for the short url's. When testing, I used my site's primary domain in creating short url's, and ...
3
votes
1answer
2k views
Short url or alias for deployed application in tomcat 6
I have a web application project which is deployed in tomcat 6.
I can access my application using the url:
http://localhost:8082/MyApplication
I also wan't to be able to access this application by ...
5
votes
1answer
649 views
Create short permalinks similar to Stack Overflow's “short permalink to this question”
I think I might already understand how this works, but wanted to be sure.
I am in the process of defining the routes for a new ASP.NET MVC application. I'd like to create short permalinks similar to ...
0
votes
3answers
89 views
How would I find all the short urls that link to a particular long url?
Basically I want to know how many people have tweeted a link to a url, but since there are dozens of link shortener out there I don't see any way to do this without having access to all of their url ...
2
votes
2answers
527 views
Short URL Outbound Link Tracking in PHP and MySQL
I have a site that shortens links based on Noah Hendrix's tutorial on the subject. I decided that it would be great if I could track when users click the short URLs, similar to the way that HootSuite ...
2
votes
3answers
855 views
mod_rewrite to make a short URL
I have a url like:
http://skepticalgamer.com/category/slam-the-controller
I'd like to strip out "category" from the URL. So I'd want:
http://skepticalgamer.com/slam-the-controller
to act as if ...
2
votes
2answers
448 views
How to make this very long url appear short?
I have made most my site SE friendly, but one part of my site bugs me...
I have a HUGE form in one of the pages, and when submitting the form (action=php_page) URL is so long it covers half a word ...
