yourls是个不错的PHP源码网址跳转程序,本人测试安装好用,适合做隐藏连接推广或淘宝客之类的站,或者做个自己的短网址。
源码下载在后文中。
打开user文件夹下config-sample.php
修改数据库连接地址及数据库名:
define( 'YOURLS_DB_USER', 'your db user name' ); /** MySQL database password */ define( 'YOURLS_DB_PASS', 'your db password' ); /** The name of the database for YOURLS */ define( 'YOURLS_DB_NAME', 'yourls' ); /** MySQL hostname */ define( 'YOURLS_DB_HOST', 'localhost' ); /** MySQL tables prefix */ define( 'YOURLS_DB_PREFIX', 'yourls_' );
修改访问域名网址:
define( 'YOURLS_SITE', 'http://site.com' );
修改管理员账号和密码,这里可支持多个(默认两个)
$yourls_user_passwords = array( 'username' => 'password', 'username2' => 'password2' // You can have one or more 'login'=>'password' lines );
上传到空间,网址后加admin就会提示安装,上述配置没错即可安装成功。
删除admin文件夹下install.php就可登陆后台了。
我安装的后台如下:
官方网址:http://yourls.org/
源码下载:1.6版 https://github.com/YOURLS/YOURLS/releases
演示网址:https://cmsblog.cn/go/22cn
评论 (0)