介绍 |
yourls PHP网址缩短程序 1.5,实际上就是网址转向之类的程序,呵呵,个人之见。网址缩短程序可将一长串地址按一定规则缩短,字符变少,更容易记,并可将缩短的网址分享到FaceBook或Twittwr等网站。程序需要MySQL数据库支持,运行前请手动配置数据库。
全新安装方法:
1、解压YOURLS文件。 2、将includes/config-sample.php复制到user/config.php。 3、修改config.php文件。 4、创建一个新数据库或已经存在的数据库。 5、直接访问 //yoursite.com/admin/ 即可自动安装。
例如: /** MySQL database username */ define( 'YOURLS_DB_USER', 'root' ); /** MySQL database password */ define( 'YOURLS_DB_PASS', '123456' ); /** 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_' ); /* ** Site options */ /** YOURLS installation URL, no trailing slash */ define( 'YOURLS_SITE', '//127.0.0.1/yourls' ); 登录密码在config.php中可以修改。config中下面的代码就是配置密码用的 $yourls_user_passwords = array( 'username' => 'password', 'username2' => 'password2' // You can have one or more 'login'=>'password' lines ); 意思就是: username对应的密码是password username2对应的密码是password2
|