Can't be done. An arbitrary URL contains many characters -- let's say 100. A shortened URL contains maybe 5. You can't use 5 characters to reconstruct 100 without a lookup table of some kind; there's simply not enough information available to do it.
EDIT 1: Well, if you don't actually need a URL shortener (then why did you write that?), there are plenty of options. I'd go for plain Base64 encoding, perhaps after a pass through zlib or another compressor (that might make URLs longer; you'll have to measure if it helps or not).
EDIT 2: Standard Base64 does use three non-alphanumeric characters: +, /, and -. If these are unacceptable, you have a couple of options:
Modified Base64. Wikipedia suggests "modified Base64 for URL", which drops all
=and replaces+and/with-and_respectively. But those still aren't alphanumeric, which doesn't help you.Some ad-hoc scheme, like Base32 or Base36. This is really easy to implement if you know how Base64 is done (see above link). (Edit 3: I guess Base32 is actually standardized. Looks like RFC 4648 Base32 with
8padding instead of=padding would work just fine for you).Some semi-standard approach. There are plenty of possibilities. Unfortunately, most of them rely on a couple of special non-alphanumeric characters, simply because by using as few as one or two more characters you can get far superior performance. Take a look at Binary-to-text encoding for a better survey than I can give.
