自分好みのカスタム・ショートURLが作れるkissabe
ショートURLサービスはいくつもあるけれども、もしサーバーがダウンしたり、ネットに問題が起きたときにはブランクページが表示されるだけになってしまう。自分好みのドメイン名を使ったカスタム・ショートURLが作れるオープンソースのkissabeを使えば自分のブランドが作れるうえ、自前ショートURLを通したトラフィックをすべて自分のところに集めることができる。kissabeをインストールする手順はまずファイルを自分のドメインのルートにアップロードする。次に新たにkissaと名づけたMySQLデータベースを作り、kissa.sqlを今作ったkissaデータベースにコマンドラインまたはphpMyAdminを使ってインポートする(kissa_v1.sqlは使わないこと)。config.phpを編集してMySQL stringを自分のデータベースのユーザー名とパスワードに変える。このときパスがちゃんとデータベースを示しているか確認。次にcreate.phpの30行目の$short_url = "http://kissa.be/$code";を自分のドメイン名に変えて$short_url = "http://yourdomian.com/$code";のようにする。そしてhtaccess.exampleを.htaccessと名前を変える。これで自前ショートURLが使えるようになる。
1. Upload all of the files to where you want it installed (e.g. the root of your domain name).
2. Create a new MySQL database called “kissa”
3. Import kissa.sql to your kissa database using the command line or phpMyAdmin (don’t use kissa_v1.sql)
4. Edit config.php and change the MySQL string with your database username and password. Make sure the path to your database is correct (if it’s not localhost).
5. Then edit create.php at line 30 or where is says
$short_url = “http://kissa.be/$code”; to read $short_url = “http://yourdomian.com/$code”;
6. Then rename htaccess.example to just .htaccess
7. Start shortening!
http://nethackz.com/build-your-own-url-shortener-for-free/
http://code.google.com/p/kissabe/