系统配置 php7.1+mysql5.7+nginx

下载源代码

git clone https://github.com/YOURLS/YOURLS.gitcd YOURLSmv user/config-sample.php user/config.php修正config.php里面的配置参数,依据自己的环境自行修正

define( 'YOURLS_DB_USER', 'root' );define( 'YOURLS_DB_PASS', '123456' );define( 'YOURLS_DB_NAME', 'yourls' );define( 'YOURLS_DB_HOST', 'localhost' );define( 'YOURLS_DB_PREFIX', 'yourls_' );//上面是数据信息不用多说define( 'YOURLS_SITE', 'http://test.com' ); //你自己做事器的域名 用最短的,短地址也是基于这个天生。
define( 'YOURLS_HOURS_OFFSET', '+8');    //时区偏移 define( 'YOURLS_LANG', 'zh_CN' );      //这个措辞默认是英文,没有中文包,须要自己去 https://github.com/guox/yourls-zh_CN/下载,放到 user/languages 里面 define( 'YOURLS_UNIQUE_URLS', true );   //短地址是否唯一 define( 'YOURLS_PRIVATE', true ); //是否私有,如果私有的,则进行api调用天生短地址时须要通报用户名和密码define( 'YOURLS_COOKIEKEY', 'A2C7&H~r80pTps{nIfI8VFpTxnfF3c)j@J#{nDUh' );//加密cookie 去 http://yourls.org/cookie 获取$yourls_user_passwords = array('admin' => '123456' / Password encrypted by YOURLS / , //用户名=>密码 可填多个 登录成功后这里的明文密码会被加密);define( 'YOURLS_DEBUG', false );      //是否开启调试  define( 'YOURLS_URL_CONVERT', 62 );    //利用36进制 还是62进制 这个最好一开始设好不要修正,避免地址冲突,建议62进制$yourls_reserved_URL = array('porn', 'faggot', 'sex', 'nigger', 'fuck', 'cunt', 'dick', //打消一下短地址,这些地址是不会天生的);

php替换站内链接应用基于 PHP 的开源软件 YOURLS 搭建短链接地址办事 Node.js

配置nginx,这里域名以test.com为例

server {

listen 80;

server_name test.com;

root /www/YOURLS/;index index.php;

location / {try_files $uri $uri/ /yourls-loader.php$is_args$args;}

location ~ \.php$ {root /www/YOURLS/;fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;include fastcgi_params;

}

}

重启nginx

访问 http://test.com/admin 选择安装 会提示安装成功

短地址默认是是按照顺序天生,从1开始,有可能我们想不按照这样顺序,可以推举用韶光戳来天生

  只须要修正 includes/functions.php 272行旁边

  将 $id = yourls_get_next_decimal(); 改为 $id = time();

api接口天生

  要求地址:http://域名//yourls-api.php

参数:username(用户名)、password(密码)、format(格式 json)、url(长地址)、action(功能,shorturl)

  返回:

{ "url": { "keyword": "1H7fa7", "url": "http://www.baidu.com/download/index.html?player_id=2", "title": "下载页面", "date": "2019-03-22 08:04:23", "ip": "127.0.0.1" }, "status": "success", "message": "http://www.baidu.com/download/index.html?player_id=2 已保存为", "title": "下载页面", "shorturl": "http://test.com/1H7fa7", "statusCode": 200}

上面的 shorturl 便是天生的短链接,也可以在后台直接天生指定的短链接。

每个短链接后面拼接一个 + ,就可以查看这个链接的点击情形,例如:http://test.com/1H7fa7+

shorturl