I am working on a URL shortening site which uses PHP, MySQL and Apache. General idea of URL shortening as I look at open source projects: user gives a URL link and the system gets ID for that link from database. Then convert the ID X base system (I am using base 36). Then use Apache mod_rewrite and create shortened URL and then redirect. Do all of the URL shortening sites work like that or do some use a different algorithm other than this? And any idea for making a difference from other URL shortening systems?
feedback
|
|
I think you are quite on the right way. One thing I would not do like you said, though, is about this part :
I don't think I'd create an Apache RewriteRule, nor use
A bit like this I guess :
I'm using something like this on one of my sites, btw :
| |||
|
feedback
|
|
If you want to do something different from other URL shortening sites, figure out a way to make sure the links don't break if your site goes away! I don't know how to do this, I think it's probably impossible... | |||
feedback
|
|
Just a security note: Do not redirect directly to the site from a shortened url if it's not under your control/domain - have a landing page where the user can see the actual url and decide whether to continue or not... | |||||||||||||||
feedback
|
|
You can use bit.ly (twitter uses this). There are some APIs which you can use to call and fetch shortened URLs. Also talk about shortening URLs, you can simply use a table like this
Where you can have the and when you call the URL http://host/?As2dD24B, it will look up the matching ID and URL, then redirects to the URL. simple? Also keep in mind that you can expand your base 36. I am assuming that your base 36 is: a-z and 0-9. You can add in A-Z (another 26) and other symbols (such as ?,:*&^%$#@). | ||||
|
feedback
|
|
Being related to the subject... Url Shorteners: Destroying the Web Since 2002 | |||
|
feedback
|