Yourls-建立自己的短网址系统

/ 33评 / 1

今天本来想注册一个简单的域名,无意中进入了一个自建的短网址服务网站,觉得很有意思,顺藤摸瓜找到了源程序,是Yourls提供的一个开源 php程序。紧接着我折腾了许久,成了,建立了自己的网址压缩服务yurl.tk。功能可真多,还支持WordPress,有相应的插件,真是相见恨晚啊。来分享一下这个程序吧,

Yourls 下载安装使用介绍
下载:

Yourls 的最新版本是 1.4.3 ,可以前往 http://code.google.com/p/yourls/downloads/list 进行下载

安装:

Yourls 的安装方法也比较简单,首先打开 includes\config-sample.php ,

找到

/** MySQL database username */
define('YOURLS_DB_USER', 'dbuser');// MySQL 数据库用户名

/** MySQL database password */
define('YOURLS_DB_PASS', 'dbpassword');// MySQL 数据库密码

/** The name of the database for YOURLS */
define('YOURLS_DB_NAME', 'yourls');// MySQL 数据库名称

/** MySQL hostname */
define('YOURLS_DB_HOST', 'localhost');// MySQL 数据库所在主机,一般情况不用修改

/** MySQL tables prefix */
define('YOURLS_DB_PREFIX', 'yourls_');//创建的Yourls 的表的名字

修改成相应的数据库信息

别着急,下面还有其他信息需要修改

/*
** Site options
*/

/** YOURLS installation URL, no trailing slash */
define('YOURLS_SITE', 'http://site.com'); //站点域名

/** Timezone GMT offset */
define('YOURLS_HOURS_OFFSET', 0); //时区修改,感觉没必要

/** Allow multiple short URLs for a same long URL
** Set to true to have only one pair of shortURL/longURL (default YOURLS behavior)
** Set to false to allow multiple short URLs pointing to the same long URL (bit.ly behavior) */
define('YOURLS_UNIQUE_URLS', true)//是否允许多个短网址可以指向同一个长网址,false表示允许

/** Private means protected with login/pass as defined below. Set to false for public usage. */
define('YOURLS_PRIVATE', true);//私人用还是公开用,false表示公开

/** A random secret hash used to encrypt cookies. You don't have to remember it, make it long and complicated. Hint: copy from http://yourls.org/cookie **/
define('YOURLS_COOKIEKEY', 'qQ4KhL_pu|s@Zm7n#%:b^{A[vhm');  //访问 http://yourls.org/cookiekey.php 取得一个唯一的 Key 并且修改填入.每次刷新都不一样的
/**  Username(s) and password(s) allowed to access the site */
$yourls_user_passwords = array(
'username' => 'password',
'username2' => 'password2' // You can have one or more 'login'=>'password' lines
); //默认的两组管理员的用户名和密码,可以删除也可以增加

然后把 config-sample.php 重命名为 config.php ,上传空间

最后输入 http://你的地址/admin/install.php 进行安装即可

后面的事不用多做介绍了,按提示一步就搞定了~

  1. URL Shortening at your finger tip. 🙂 | Lazy Blogger

  2. P.H说道:

    我對谷奥那个域名縮短更感興趣~ 好像只給自己用的~ 不知道是不是也是這樣實現的~

    • hesiway说道:

      @P.H @P.H, HOHO~很有可能,谷歌家也有提供这服务的,要是你建了这个,保证你也可以像谷奥一样~

  3. 灵亦说道:

    为啥你们的页面都是.html

    • hesiway说道:

      @灵亦 @灵亦, 我设置了伪静态,然后在固定连接的URL后加了.html

  4. fly3q说道:

    哈哈,我也搞了一个

    • hesiway说道:

      @fly3q @fly3q, 恩,爱折腾的人当然一样会喜欢搞~ :偷笑:

  5. 集思说道:

    嗯,这个好,有空要折腾下,给朋友做短网址服务。

  6. 大少说道:

    有时间我也研究一下。

  7. 扯远了说道:

    我的域名这么短,就不用缩短了,注(我是分享群里来的,你懂的)

  8. 老七说道:

    还没用过呢 看看去~~ :嘻:

  9. blueandhack说道:

    yourls不怎么样~

  10. SEO白话文说道:

    近来短网址很流行啊

    以后偶的名字由“创意无极限”改为“SEO白话文了”,多多捧场

  11. WordPress啦说道:

    有什么作用呢?

  12. 小叶榄仁说道:

    哈哈哈,抱走抱走。

  13. winw说道:

    这个好用,收下了

  14. only博客说道:


    好方法
    仔细瞧瞧

  15. 小松说道:

    哈哈,我也用这个的,http://thin.tk~

    • hesiway说道:

      @小松 @小松, 昨天我就发现了,不建议我仿照一个吧 :偷笑:

  16. 岸边说道:

    我一直没搞明白这短网址有啥用 :?:

    • hesiway说道:

      @岸边 @岸边, 你看到我的“本文链接地址”就明白了~ :嘻:

Comments have been closed.